diff --git a/src/Websites/Websites.Autorest/Az.Websites.nuspec b/src/Websites/Websites.Autorest/Az.Websites.nuspec index 752b43bab4ef..db4f88bb7b83 100644 --- a/src/Websites/Websites.Autorest/Az.Websites.nuspec +++ b/src/Websites/Websites.Autorest/Az.Websites.nuspec @@ -13,7 +13,7 @@ Microsoft Corporation. All rights reserved. Azure ResourceManager ARM PSModule $(service-name) - + @@ -23,9 +23,9 @@ - - - + + + diff --git a/src/Websites/Websites.Autorest/Properties/AssemblyInfo.cs b/src/Websites/Websites.Autorest/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..7233f09d2463 --- /dev/null +++ b/src/Websites/Websites.Autorest/Properties/AssemblyInfo.cs @@ -0,0 +1,26 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the Apache License, Version 2.0 (the ""License""); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an ""AS IS"" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code +// is regenerated. + +using System; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")] +[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")] +[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - Websites")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("3.4.1")] +[assembly: System.Reflection.AssemblyVersionAttribute("3.4.1")] +[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)] +[assembly: System.CLSCompliantAttribute(false)] diff --git a/src/Websites/Websites.Autorest/README.md b/src/Websites/Websites.Autorest/README.md index f1f61384484f..181ce280b3a6 100644 --- a/src/Websites/Websites.Autorest/README.md +++ b/src/Websites/Websites.Autorest/README.md @@ -37,13 +37,6 @@ input-file: title: Websites module-version: 0.1.0 subject-prefix: $(service-name) -identity-correction-for-post: true -resourcegroup-append: true -nested-object-to-string: true - -# For new modules, please avoid setting 3.x using the use-extension method and instead, use 4.x as the default option -use-extension: - "@autorest/powershell": "3.x" directive: #Modify operationId @@ -206,58 +199,20 @@ directive: verb: Unregister subject: BuildUserProvidedFunctionApp -# Remove variant + # Remove variant # Following is two common directive which are normally required in all the RPs # 1. Remove the unexpanded parameter set # 2. For New-* cmdlets, ViaIdentity is not required, so CreateViaIdentityExpanded is removed as well - where: - variant: ^CreateViaIdentityExpanded$|^Create$|^CreateViaIdentity$|^Update$|^UpdateViaIdentity$ - # We got to keep the Create variant of CustomDomain because it's special that it doesn't have a - # CreateExpanded variant, because the only parameters are all in URL rather than request body - subject: CustomDomain - - remove: true - - where: - verb: Test - variant: ^Validate$|^ValidateViaIdentity$ - # We got to keep the Create variant of CustomDomain because it's special that it doesn't have a - # CreateExpanded variant, because the only parameters are all in URL rather than request body - subject: CustomDomain - remove: true - - - where: - variant: ^Create$|^CreateViaIdentity$|^Update$|^UpdateViaIdentity$ - # We got to keep the Create variant of CustomDomain because it's special that it doesn't have a - # CreateExpanded variant, because the only parameters are all in URL rather than request body - subject: BuildAppSetting - remove: true - - - where: - variant: ^Create$|^CreateViaIdentity$|^Update$|^UpdateViaIdentity$ - # We got to keep the Create variant of CustomDomain because it's special that it doesn't have a - # CreateExpanded variant, because the only parameters are all in URL rather than request body - subject: FunctionAppSetting - remove: true - - - where: - variant: ^Create$|^CreateViaIdentity$|^Update$|^UpdateViaIdentity$ - # We got to keep the Create variant of CustomDomain because it's special that it doesn't have a - # CreateExpanded variant, because the only parameters are all in URL rather than request body - subject: Setting + subject: CustomDomain|BuildAppSetting|FunctionAppSetting|Setting|BuildFunctionAppSetting|UserRoleInvitationLink + variant: ^Create(?!.*?(Expanded|JsonFilePath|JsonString)) remove: true - where: - variant: ^Create$|^CreateViaIdentity$|^Update$|^UpdateViaIdentity$ + variant: ^CreateViaIdentityExpanded$ # We got to keep the Create variant of CustomDomain because it's special that it doesn't have a # CreateExpanded variant, because the only parameters are all in URL rather than request body - subject: BuildFunctionAppSetting - remove: true - - - where: - variant: ^Create$|^CreateViaIdentity$|^Update$|^UpdateViaIdentity$ - # We got to keep the Create variant of CustomDomain because it's special that it doesn't have a - # CreateExpanded variant, because the only parameters are all in URL rather than request body - subject: UserRoleInvitationLink + subject: CustomDomain remove: true - where: @@ -272,6 +227,14 @@ directive: variant: ^Update$|^UpdateViaIdentity$ remove: true + - where: + verb: Test + variant: ^Validate$|^ValidateViaIdentity$ + # We got to keep the Create variant of CustomDomain because it's special that it doesn't have a + # CreateExpanded variant, because the only parameters are all in URL rather than request body + subject: CustomDomain + remove: true + - where: verb: Reset subject: ApiKey diff --git a/src/Websites/Websites.Autorest/custom/New-AzStaticWebApp.ps1 b/src/Websites/Websites.Autorest/custom/New-AzStaticWebApp.ps1 index da170a4ee184..fec0b709d7cb 100644 --- a/src/Websites/Websites.Autorest/custom/New-AzStaticWebApp.ps1 +++ b/src/Websites/Websites.Autorest/custom/New-AzStaticWebApp.ps1 @@ -1,7 +1,6 @@ # ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation +# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at @@ -11,30 +10,46 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. +# Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code +# is regenerated. # ---------------------------------------------------------------------------------- <# .Synopsis -Description for Creates a new static site in an existing resource group, or updates an existing static site. +Description for create a new static site in an existing resource group, or create an existing static site. .Description -Description for Creates a new static site in an existing resource group, or updates an existing static site. +Description for create a new static site in an existing resource group, or create an existing static site. .Example -PS C:\> {{ Add code here }} - -{{ Add output here }} +New-AzStaticWebApp -ResourceGroupName 'azure-rg-test' -Name 'staticweb-45asde' -Location 'Central US' -RepositoryUrl 'https://github.com/LucasYao93/blazor-starter' -RepositoryToken 'githubAccessToken' -Branch 'branch02' -AppLocation 'Client' -ApiLocation 'Api' -OutputLocation 'wwwroot' -SkuName 'Standard' .Example -PS C:\> {{ Add code here }} - -{{ Add output here }} +New-AzStaticWebApp -ResourceGroupName 'azure-rg-test' -Name staticweb-pwsh01 -Location "Central US" -RepositoryToken 'xxxxxxxxxxxxxxxxx' -TemplateRepositoryUrl 'https://github.com/staticwebdev/blazor-starter' -ForkRepositoryDescription "Test template repository function of the azure static web." -ForkRepositoryName "test-blazor-starter" -ForkRepositoryOwner 'LucasYao93' -Branch 'main' -AppLocation 'Client' -ApiLocation 'Api' -OutputLocation 'wwwroot' -SkuName 'Standard' +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource +Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteArmResource .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -SKUCAPABILITY : Capabilities of the SKU, e.g., is traffic manager enabled +INPUTOBJECT : Identity Parameter + [Authprovider ]: The auth provider for the users. + [DomainName ]: The custom domain name. + [EnvironmentName ]: The stage site identifier. + [FunctionAppName ]: Name of the function app registered with the static site build. + [Id ]: Resource identity path + [JobHistoryId ]: History ID. + [Location ]: Location where you plan to create the static site. + [Name ]: Name of the static site. + [PrivateEndpointConnectionName ]: Name of the private endpoint connection. + [ResourceGroupName ]: Name of the resource group to which the resource belongs. + [Slot ]: Name of the deployment slot. If a slot is not specified, the API deletes a deployment for the production slot. + [SubscriptionId ]: Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000). + [Userid ]: The user id of the user. + [WebJobName ]: Name of Web Job. + +SKUCAPABILITY : Capabilities of the SKU, e.g., is traffic manager enabled? [Name ]: Name of the SKU capability. [Reason ]: Reason of the SKU capability. [Value ]: Value of the SKU capability. @@ -42,22 +57,28 @@ SKUCAPABILITY : Capabilities of the SKU, e.g., is traffic manager https://learn.microsoft.com/powershell/module/az.websites/new-azstaticwebapp #> function New-AzStaticWebApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteArmResource])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Path')] [System.String] # Name of the static site to create or update. ${Name}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Path')] [System.String] # Name of the resource group to which the resource belongs. ${ResourceGroupName}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaJsonFilePath')] + [Parameter(ParameterSetName='CreateViaJsonString')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] @@ -66,171 +87,286 @@ param( # 00000000-0000-0000-0000-000000000000). ${SubscriptionId}, - [Parameter(Mandatory)] + [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity] + # Identity Parameter + ${InputObject}, + + [Parameter(ParameterSetName='CreateExpanded', Mandatory)] + [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.String] # Resource Location. ${Location}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.Management.Automation.SwitchParameter] # false if config file is locked for this static web app; otherwise, true. ${AllowConfigFileUpdate}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.String] # A custom command to run during deployment of the Azure Functions API application. ${ApiBuildCommand}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.String] # The path to the api code within the repository. ${ApiLocation}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.String] # Deprecated: The path of the app artifacts after building (deprecated in favor of OutputLocation) ${AppArtifactLocation}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.String] # A custom command to run during deployment of the static content application. ${AppBuildCommand}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.String] # The path to the app code within the repository. ${AppLocation}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.String] # The target branch in the repository. ${Branch}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.Int32] # Current number of instances assigned to the resource. ${Capacity}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] + [System.Management.Automation.SwitchParameter] + # Determines whether to enable a system-assigned identity for the resource. + ${EnableSystemAssignedIdentity}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.String] - # Github Action secret name override. - ${GithubActionSecretNameOverride}, + # Description of the newly generated repository. + ${ForkRepositoryDescription}, - [Parameter()] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.ManagedServiceIdentityType])] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.ManagedServiceIdentityType] - # Type of managed service identity. - ${IdentityType}, + [System.Management.Automation.SwitchParameter] + # Whether or not the newly generated repository is a private repository. + # Defaults to false (i.e. + # public). + ${ForkRepositoryIsPrivate}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Websites.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IManagedServiceIdentityUserAssignedIdentities]))] - [System.Collections.Hashtable] - # The list of user assigned identities associated with the resource. - # The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName} - ${IdentityUserAssignedIdentity}, + [System.String] + # Name of the newly generated repository. + ${ForkRepositoryName}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] + [System.String] + # Owner of the newly generated repository. + ${ForkRepositoryOwner}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] + [System.String] + # Github Action secret name override. + ${GithubActionSecretNameOverride}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.String] # Kind of resource. ${Kind}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.String] # The output path of the app after building. ${OutputLocation}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.String] # A user's github repository token. # This is used to setup the Github Actions workflow file and API secrets. ${RepositoryToken}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.String] # URL for the repository of the static site. ${RepositoryUrl}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.Management.Automation.SwitchParameter] # Skip Github Action workflow generation. ${SkipGithubActionWorkflowGeneration}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [AllowEmptyCollection()] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ICapability[]] + # Capabilities of the SKU, e.g., is traffic manager enabled? + ${SkuCapability}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] + [System.Int32] + # Default number of workers for this App Service plan SKU. + ${SkuCapacityDefault}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] + [System.Int32] + # Maximum number of Elastic workers for this App Service plan SKU. + ${SkuCapacityElasticMaximum}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] + [System.Int32] + # Maximum number of workers for this App Service plan SKU. + ${SkuCapacityMaximum}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] + [System.Int32] + # Minimum number of workers for this App Service plan SKU. + ${SkuCapacityMinimum}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] + [System.String] + # Available scale configurations for an App Service plan. + ${SkuCapacityScaleType}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] + [System.String] + # Family code of the resource SKU. + ${SkuFamily}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [AllowEmptyCollection()] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] + [System.String[]] + # Locations of the SKU. + ${SkuLocation}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.String] # Name of the resource SKU. ${SkuName}, - [Parameter()] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.StagingEnvironmentPolicy])] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.StagingEnvironmentPolicy] + [System.String] + # Size specifier of the resource SKU. + ${SkuSize}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] + [System.String] + # Service tier of the resource SKU. + ${SkuTier}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.PSArgumentCompleterAttribute("Enabled", "Disabled")] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] + [System.String] # State indicating whether staging environments are allowed or not allowed for a static web app. ${StagingEnvironmentPolicy}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Websites.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IResourceTags]))] + [Microsoft.Azure.PowerShell.Cmdlets.Websites.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IResourceTags]))] [System.Collections.Hashtable] # Resource tags. ${Tag}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.String] - # Description of the newly generated repository. - ${ForkRepositoryDescription}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] - [System.Management.Automation.SwitchParameter] - # Whether or not the newly generated repository is a private repository. - # Defaults to false (i.e. - # public). - ${ForkRepositoryIsPrivate}, + # URL of the template repository. + # The newly generated repository will be based on this one. + ${TemplateRepositoryUrl}, - [Parameter()] + [Parameter(ParameterSetName='CreateExpanded')] + [Parameter(ParameterSetName='CreateViaIdentityExpanded')] + [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] - [System.String] - # Owner of the newly generated repository. - ${ForkRepositoryOwner}, + [System.String[]] + # The array of user assigned identities associated with the resource. + # The elements in array will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}.' + ${UserAssignedIdentity}, - [Parameter()] + [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.String] - # Name of the newly generated repository. - ${ForkRepositoryName}, + # Path of Json file supplied to the Create operation + ${JsonFilePath}, - [Parameter()] + [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Body')] [System.String] - # URL of the template repository. - # The newly generated repository will be based on this one. - ${TemplateRepositoryUrl}, + # Json string supplied to the Create operation + ${JsonString}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.Websites.Category('Azure')] [System.Management.Automation.PSObject] - # The credentials, account, tenant, and subscription used for communication with Azure. + # The DefaultProfile parameter is not functional. + # Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. ${DefaultProfile}, [Parameter()] @@ -284,7 +420,6 @@ param( # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) - process { try { if(!$PSBoundParameters.ContainsKey('RepositoryUrl')) { diff --git a/src/Websites/Websites.Autorest/docs/Az.Websites.md b/src/Websites/Websites.Autorest/docs/Az.Websites.md index 84275c1fda26..0c969cd3899f 100644 --- a/src/Websites/Websites.Autorest/docs/Az.Websites.md +++ b/src/Websites/Websites.Autorest/docs/Az.Websites.md @@ -1,6 +1,6 @@ --- Module Name: Az.Websites -Module Guid: e2ccd5b0-af3a-415f-82ed-b9a388aeed61 +Module Guid: fc780f32-3a4b-4f14-a0ef-39438a2d33f8 Download Help Link: https://learn.microsoft.com/powershell/module/az.websites Help Version: 1.0.0.0 Locale: en-US @@ -75,25 +75,25 @@ Get or list triggered web job's history for an app. List webjobs for an app. ### [New-AzStaticWebApp](New-AzStaticWebApp.md) -Description for Creates a new static site in an existing resource group, or updates an existing static site. +Description for create a new static site in an existing resource group, or create an existing static site. ### [New-AzStaticWebAppBuildAppSetting](New-AzStaticWebAppBuildAppSetting.md) -Description for Creates or updates the app settings of a static site build. +Description for create the app settings of a static site build. ### [New-AzStaticWebAppBuildFunctionAppSetting](New-AzStaticWebAppBuildFunctionAppSetting.md) -Description for Creates or updates the function app settings of a static site build. +Description for create the function app settings of a static site build. ### [New-AzStaticWebAppCustomDomain](New-AzStaticWebAppCustomDomain.md) -Description for Creates a new static site custom domain in an existing resource group and static site. +Description for create a new static site custom domain in an existing resource group and static site. ### [New-AzStaticWebAppFunctionAppSetting](New-AzStaticWebAppFunctionAppSetting.md) -Description for Creates or updates the function app settings of a static site. +Description for create the function app settings of a static site. ### [New-AzStaticWebAppSetting](New-AzStaticWebAppSetting.md) -Description for Creates or updates the app settings of a static site. +Description for create the app settings of a static site. ### [New-AzStaticWebAppUserRoleInvitationLink](New-AzStaticWebAppUserRoleInvitationLink.md) -Description for Creates an invitation link for a user with the role +Description for create an invitation link for a user with the role ### [Register-AzStaticWebAppUserProvidedFunctionApp](Register-AzStaticWebAppUserProvidedFunctionApp.md) Description for Register a user provided function app with a static site build @@ -156,8 +156,8 @@ Description for Detach the user provided function app from the static site build Description for Detach the user provided function app from the static site ### [Update-AzStaticWebApp](Update-AzStaticWebApp.md) -Description for Creates a new static site in an existing resource group, or updates an existing static site. +Description for update a new static site in an existing resource group, or update an existing static site. ### [Update-AzStaticWebAppUser](Update-AzStaticWebAppUser.md) -Description for Updates a user entry with the listed roles +Description for update a user entry with the listed roles diff --git a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebApp.md b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebApp.md index 98a9b1fe0147..1c2afe0b9b62 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebApp.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebApp.md @@ -113,7 +113,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -183,7 +182,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteArmResource ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppBuild.md b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppBuild.md index ab43028ab87d..4393d5e252ce 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppBuild.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppBuild.md @@ -29,6 +29,12 @@ Get-AzStaticWebAppBuild -EnvironmentName -Name -ResourceGroupN Get-AzStaticWebAppBuild -InputObject [-DefaultProfile ] [] ``` +### GetViaIdentityStaticSite +``` +Get-AzStaticWebAppBuild -EnvironmentName -StaticSiteInputObject + [-DefaultProfile ] [] +``` + ## DESCRIPTION Description for Gets the details of a static site build. @@ -97,7 +103,7 @@ The stage site identifier. ```yaml Type: System.String -Parameter Sets: Get +Parameter Sets: Get, GetViaIdentityStaticSite Aliases: Required: True @@ -109,7 +115,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -153,6 +158,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -179,7 +199,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteBuildArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteBuildArmResource ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppBuildAppSetting.md b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppBuildAppSetting.md index 47b0ffb8b3b1..78dfd3a32b3c 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppBuildAppSetting.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppBuildAppSetting.md @@ -153,7 +153,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringDictionary ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppBuildFunction.md b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppBuildFunction.md index 1b8af5c0a2d5..533a78ab1af9 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppBuildFunction.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppBuildFunction.md @@ -122,7 +122,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteFunctionOverviewArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteFunctionOverviewArmResource ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppBuildFunctionAppSetting.md b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppBuildFunctionAppSetting.md index c17031a23d56..0cfdced97141 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppBuildFunctionAppSetting.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppBuildFunctionAppSetting.md @@ -153,7 +153,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringDictionary ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppConfiguredRole.md b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppConfiguredRole.md index 34a1f6d709e2..cb39b49d896c 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppConfiguredRole.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppConfiguredRole.md @@ -138,7 +138,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringList +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringList ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppCustomDomain.md b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppCustomDomain.md index d7d3922ce870..dea225dee5a9 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppCustomDomain.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppCustomDomain.md @@ -30,6 +30,12 @@ Get-AzStaticWebAppCustomDomain -InputObject [-DefaultProfile [] ``` +### GetViaIdentityStaticSite +``` +Get-AzStaticWebAppCustomDomain -DomainName -StaticSiteInputObject + [-DefaultProfile ] [] +``` + ## DESCRIPTION Description for Gets an existing custom domain for a particular static site. @@ -97,7 +103,7 @@ The custom domain name. ```yaml Type: System.String -Parameter Sets: Get +Parameter Sets: Get, GetViaIdentityStaticSite Aliases: Required: True @@ -109,7 +115,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -153,6 +158,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -179,7 +199,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteCustomDomainOverviewArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteCustomDomainOverviewArmResource ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppFunction.md b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppFunction.md index a0a604610d5a..adcd24a0e323 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppFunction.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppFunction.md @@ -102,7 +102,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteFunctionOverviewArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteFunctionOverviewArmResource ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppFunctionAppSetting.md b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppFunctionAppSetting.md index f8c51977836f..7faa02a7627b 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppFunctionAppSetting.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppFunctionAppSetting.md @@ -138,7 +138,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringDictionary ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppSecret.md b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppSecret.md index 1c3910e542bb..c35af5c26e83 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppSecret.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppSecret.md @@ -138,7 +138,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringDictionary ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppSetting.md b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppSetting.md index 68bd3f9c810a..fdabb440912a 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppSetting.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppSetting.md @@ -138,7 +138,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringDictionary ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppUser.md b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppUser.md index b3fe21760ebc..783b5ee8005e 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppUser.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppUser.md @@ -153,7 +153,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteUserArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserArmResource ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppUserProvidedFunctionApp.md b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppUserProvidedFunctionApp.md index 0d81a5cbc38b..d14daf23981f 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppUserProvidedFunctionApp.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzStaticWebAppUserProvidedFunctionApp.md @@ -30,6 +30,18 @@ Get-AzStaticWebAppUserProvidedFunctionApp -InputObject [-Def [] ``` +### GetViaIdentityBuild +``` +Get-AzStaticWebAppUserProvidedFunctionApp -BuildInputObject -FunctionAppName + [-DefaultProfile ] [] +``` + +### GetViaIdentityStaticSite +``` +Get-AzStaticWebAppUserProvidedFunctionApp -EnvironmentName -FunctionAppName + -StaticSiteInputObject [-DefaultProfile ] [] +``` + ### List ``` Get-AzStaticWebAppUserProvidedFunctionApp -EnvironmentName -Name -ResourceGroupName @@ -114,6 +126,21 @@ This command gets the details of the user provided function app registered with ## PARAMETERS +### -BuildInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityBuild +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -135,7 +162,7 @@ The stage site identifier. ```yaml Type: System.String -Parameter Sets: Get, List +Parameter Sets: Get, GetViaIdentityStaticSite, List Aliases: Required: True @@ -150,7 +177,7 @@ Name of the function app registered with the static site build. ```yaml Type: System.String -Parameter Sets: Get, List2 +Parameter Sets: Get, GetViaIdentityBuild, GetViaIdentityStaticSite, List2 Aliases: Required: True @@ -162,7 +189,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -206,6 +232,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -232,7 +273,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteUserProvidedFunctionAppArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionAppArmResource ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzWebAppContinuousWebJob.md b/src/Websites/Websites.Autorest/docs/Get-AzWebAppContinuousWebJob.md index d563d0d94456..59637f301057 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzWebAppContinuousWebJob.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzWebAppContinuousWebJob.md @@ -21,12 +21,18 @@ Get-AzWebAppContinuousWebJob -AppName -ResourceGroupName [-Sub ### Get ``` Get-AzWebAppContinuousWebJob -AppName -Name -ResourceGroupName - [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [] + [-SubscriptionId ] [-DefaultProfile ] [] ``` ### GetViaIdentity ``` -Get-AzWebAppContinuousWebJob -InputObject [-DefaultProfile ] [-PassThru] +Get-AzWebAppContinuousWebJob -InputObject [-DefaultProfile ] + [] +``` + +### GetViaIdentitySite +``` +Get-AzWebAppContinuousWebJob -Name -SiteInputObject [-DefaultProfile ] [] ``` @@ -112,7 +118,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -131,7 +136,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Get +Parameter Sets: Get, GetViaIdentitySite Aliases: Required: True @@ -141,33 +146,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -PassThru -Returns true when the command succeeds +### -ResourceGroupName +Name of the resource group to which the resource belongs. ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: Get, GetViaIdentity +Type: System.String +Parameter Sets: Get, List Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceGroupName -Name of the resource group to which the resource belongs. +### -SiteInputObject +Identity Parameter ```yaml -Type: System.String -Parameter Sets: Get, List +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentitySite Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -197,7 +202,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.IContinuousWebJob +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IContinuousWebJob ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzWebAppSlotContinuousWebJob.md b/src/Websites/Websites.Autorest/docs/Get-AzWebAppSlotContinuousWebJob.md index bac8b01748e2..b14a1d745cf0 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzWebAppSlotContinuousWebJob.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzWebAppSlotContinuousWebJob.md @@ -21,15 +21,27 @@ Get-AzWebAppSlotContinuousWebJob -AppName -ResourceGroupName - ### Get ``` Get-AzWebAppSlotContinuousWebJob -AppName -Name -ResourceGroupName - -SlotName [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [] + -SlotName [-SubscriptionId ] [-DefaultProfile ] [] ``` ### GetViaIdentity ``` -Get-AzWebAppSlotContinuousWebJob -InputObject [-DefaultProfile ] [-PassThru] +Get-AzWebAppSlotContinuousWebJob -InputObject [-DefaultProfile ] [] ``` +### GetViaIdentityContinuouswebjob +``` +Get-AzWebAppSlotContinuousWebJob -ContinuouswebjobInputObject -SlotName + [-DefaultProfile ] [] +``` + +### GetViaIdentitySite +``` +Get-AzWebAppSlotContinuousWebJob -Name -SiteInputObject -SlotName + [-DefaultProfile ] [] +``` + ## DESCRIPTION Get or list continuous web for a deployment slot. @@ -94,6 +106,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ContinuouswebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityContinuouswebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -112,7 +139,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -131,7 +157,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Get +Parameter Sets: Get, GetViaIdentitySite Aliases: Required: True @@ -141,33 +167,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -PassThru -Returns true when the command succeeds +### -ResourceGroupName +Name of the resource group to which the resource belongs. ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: Get, GetViaIdentity +Type: System.String +Parameter Sets: Get, List Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceGroupName -Name of the resource group to which the resource belongs. +### -SiteInputObject +Identity Parameter ```yaml -Type: System.String -Parameter Sets: Get, List +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentitySite Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -177,7 +203,7 @@ If a slot is not specified, the API deletes a deployment for the production slot ```yaml Type: System.String -Parameter Sets: Get, List +Parameter Sets: Get, GetViaIdentityContinuouswebjob, GetViaIdentitySite, List Aliases: Required: True @@ -213,7 +239,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.IContinuousWebJob +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IContinuousWebJob ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzWebAppSlotTriggeredWebJob.md b/src/Websites/Websites.Autorest/docs/Get-AzWebAppSlotTriggeredWebJob.md index e1ed639fc601..732d44138113 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzWebAppSlotTriggeredWebJob.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzWebAppSlotTriggeredWebJob.md @@ -21,15 +21,27 @@ Get-AzWebAppSlotTriggeredWebJob -AppName -ResourceGroupName -S ### Get ``` Get-AzWebAppSlotTriggeredWebJob -AppName -Name -ResourceGroupName - -SlotName [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [] + -SlotName [-SubscriptionId ] [-DefaultProfile ] [] ``` ### GetViaIdentity ``` -Get-AzWebAppSlotTriggeredWebJob -InputObject [-DefaultProfile ] [-PassThru] +Get-AzWebAppSlotTriggeredWebJob -InputObject [-DefaultProfile ] [] ``` +### GetViaIdentitySite +``` +Get-AzWebAppSlotTriggeredWebJob -Name -SiteInputObject -SlotName + [-DefaultProfile ] [] +``` + +### GetViaIdentityTriggeredwebjob +``` +Get-AzWebAppSlotTriggeredWebJob -SlotName -TriggeredwebjobInputObject + [-DefaultProfile ] [] +``` + ## DESCRIPTION Get or list triggered web for a deployment slot. @@ -112,7 +124,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -131,7 +142,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Get +Parameter Sets: Get, GetViaIdentitySite Aliases: Required: True @@ -141,33 +152,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -PassThru -Returns true when the command succeeds +### -ResourceGroupName +Name of the resource group to which the resource belongs. ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: Get, GetViaIdentity +Type: System.String +Parameter Sets: Get, List Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceGroupName -Name of the resource group to which the resource belongs. +### -SiteInputObject +Identity Parameter ```yaml -Type: System.String -Parameter Sets: Get, List +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentitySite Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -177,7 +188,7 @@ If a slot is not specified, the API uses the production slot. ```yaml Type: System.String -Parameter Sets: Get, List +Parameter Sets: Get, GetViaIdentitySite, GetViaIdentityTriggeredwebjob, List Aliases: Required: True @@ -204,6 +215,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -TriggeredwebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityTriggeredwebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). @@ -213,7 +239,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.ITriggeredWebJob +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ITriggeredWebJob ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzWebAppSlotTriggeredWebJobHistory.md b/src/Websites/Websites.Autorest/docs/Get-AzWebAppSlotTriggeredWebJobHistory.md index 6b6a27e8ae6a..35884b8c346f 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzWebAppSlotTriggeredWebJobHistory.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzWebAppSlotTriggeredWebJobHistory.md @@ -15,20 +15,38 @@ Get or list triggered web job's history for a deployment slot. ### List (Default) ``` Get-AzWebAppSlotTriggeredWebJobHistory -AppName -Name -ResourceGroupName - -SlotName [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [] + -SlotName [-SubscriptionId ] [-DefaultProfile ] [] ``` ### Get ``` Get-AzWebAppSlotTriggeredWebJobHistory -AppName -Id -Name -ResourceGroupName -SlotName [-SubscriptionId ] [-DefaultProfile ] - [-PassThru] [] + [] ``` ### GetViaIdentity ``` Get-AzWebAppSlotTriggeredWebJobHistory -InputObject [-DefaultProfile ] - [-PassThru] [] + [] +``` + +### GetViaIdentityHistory +``` +Get-AzWebAppSlotTriggeredWebJobHistory -HistoryInputObject -SlotName + [-DefaultProfile ] [] +``` + +### GetViaIdentitySite +``` +Get-AzWebAppSlotTriggeredWebJobHistory -Id -Name -SiteInputObject + -SlotName [-DefaultProfile ] [] +``` + +### GetViaIdentityTriggeredwebjob +``` +Get-AzWebAppSlotTriggeredWebJobHistory -Id -SlotName + -TriggeredwebjobInputObject [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -109,12 +127,27 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HistoryInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityHistory +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -Id History ID. ```yaml Type: System.String -Parameter Sets: Get +Parameter Sets: Get, GetViaIdentitySite, GetViaIdentityTriggeredwebjob Aliases: Required: True @@ -126,7 +159,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -145,7 +177,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Get, List +Parameter Sets: Get, GetViaIdentitySite, List Aliases: Required: True @@ -155,33 +187,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -PassThru -Returns true when the command succeeds +### -ResourceGroupName +Name of the resource group to which the resource belongs. ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Type: System.String +Parameter Sets: Get, List Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceGroupName -Name of the resource group to which the resource belongs. +### -SiteInputObject +Identity Parameter ```yaml -Type: System.String -Parameter Sets: Get, List +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentitySite Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -191,7 +223,7 @@ If a slot is not specified, the API uses the production slot. ```yaml Type: System.String -Parameter Sets: Get, List +Parameter Sets: Get, GetViaIdentityHistory, GetViaIdentitySite, GetViaIdentityTriggeredwebjob, List Aliases: Required: True @@ -218,6 +250,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -TriggeredwebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityTriggeredwebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). @@ -227,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.ITriggeredJobHistory +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ITriggeredJobHistory ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzWebAppSlotWebJob.md b/src/Websites/Websites.Autorest/docs/Get-AzWebAppSlotWebJob.md index 905bee3fc2ee..4b71056f272f 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzWebAppSlotWebJob.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzWebAppSlotWebJob.md @@ -126,7 +126,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.IWebJob +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebJob ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzWebAppTriggeredWebJob.md b/src/Websites/Websites.Autorest/docs/Get-AzWebAppTriggeredWebJob.md index 40a6798629fb..8a03a475f464 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzWebAppTriggeredWebJob.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzWebAppTriggeredWebJob.md @@ -21,12 +21,17 @@ Get-AzWebAppTriggeredWebJob -AppName -ResourceGroupName [-Subs ### Get ``` Get-AzWebAppTriggeredWebJob -AppName -Name -ResourceGroupName - [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [] + [-SubscriptionId ] [-DefaultProfile ] [] ``` ### GetViaIdentity ``` -Get-AzWebAppTriggeredWebJob -InputObject [-DefaultProfile ] [-PassThru] +Get-AzWebAppTriggeredWebJob -InputObject [-DefaultProfile ] [] +``` + +### GetViaIdentitySite +``` +Get-AzWebAppTriggeredWebJob -Name -SiteInputObject [-DefaultProfile ] [] ``` @@ -112,7 +117,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -131,7 +135,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Get +Parameter Sets: Get, GetViaIdentitySite Aliases: Required: True @@ -141,33 +145,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -PassThru -Returns true when the command succeeds +### -ResourceGroupName +Name of the resource group to which the resource belongs. ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: Get, GetViaIdentity +Type: System.String +Parameter Sets: Get, List Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceGroupName -Name of the resource group to which the resource belongs. +### -SiteInputObject +Identity Parameter ```yaml -Type: System.String -Parameter Sets: Get, List +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentitySite Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -197,7 +201,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.ITriggeredWebJob +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ITriggeredWebJob ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzWebAppTriggeredWebJobHistory.md b/src/Websites/Websites.Autorest/docs/Get-AzWebAppTriggeredWebJobHistory.md index 8941c42d13cb..d9a8ccbb7e11 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzWebAppTriggeredWebJobHistory.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzWebAppTriggeredWebJobHistory.md @@ -15,21 +15,33 @@ Get or list triggered web job's history for an app. ### List (Default) ``` Get-AzWebAppTriggeredWebJobHistory -AppName -Name -ResourceGroupName - [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [] + [-SubscriptionId ] [-DefaultProfile ] [] ``` ### Get ``` Get-AzWebAppTriggeredWebJobHistory -AppName -Id -Name -ResourceGroupName - [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [] + [-SubscriptionId ] [-DefaultProfile ] [] ``` ### GetViaIdentity ``` -Get-AzWebAppTriggeredWebJobHistory -InputObject [-DefaultProfile ] [-PassThru] +Get-AzWebAppTriggeredWebJobHistory -InputObject [-DefaultProfile ] [] ``` +### GetViaIdentitySite +``` +Get-AzWebAppTriggeredWebJobHistory -Id -Name -SiteInputObject + [-DefaultProfile ] [] +``` + +### GetViaIdentityTriggeredwebjob +``` +Get-AzWebAppTriggeredWebJobHistory -Id -TriggeredwebjobInputObject + [-DefaultProfile ] [] +``` + ## DESCRIPTION Get or list triggered web job's history for an app. @@ -114,7 +126,7 @@ History ID. ```yaml Type: System.String -Parameter Sets: Get +Parameter Sets: Get, GetViaIdentitySite, GetViaIdentityTriggeredwebjob Aliases: Required: True @@ -126,7 +138,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -145,7 +156,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Get, List +Parameter Sets: Get, GetViaIdentitySite, List Aliases: Required: True @@ -155,33 +166,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -PassThru -Returns true when the command succeeds +### -ResourceGroupName +Name of the resource group to which the resource belongs. ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Type: System.String +Parameter Sets: Get, List Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceGroupName -Name of the resource group to which the resource belongs. +### -SiteInputObject +Identity Parameter ```yaml -Type: System.String -Parameter Sets: Get, List +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentitySite Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -202,6 +213,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -TriggeredwebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityTriggeredwebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). @@ -211,7 +237,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.ITriggeredJobHistory +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ITriggeredJobHistory ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Get-AzWebAppWebJob.md b/src/Websites/Websites.Autorest/docs/Get-AzWebAppWebJob.md index 023232e94ef8..1b1e45ad84fa 100644 --- a/src/Websites/Websites.Autorest/docs/Get-AzWebAppWebJob.md +++ b/src/Websites/Websites.Autorest/docs/Get-AzWebAppWebJob.md @@ -110,7 +110,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.IWebJob +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebJob ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/New-AzStaticWebApp.md b/src/Websites/Websites.Autorest/docs/New-AzStaticWebApp.md index 4a4bdfa5df52..b8d27c824720 100644 --- a/src/Websites/Websites.Autorest/docs/New-AzStaticWebApp.md +++ b/src/Websites/Websites.Autorest/docs/New-AzStaticWebApp.md @@ -8,25 +8,57 @@ schema: 2.0.0 # New-AzStaticWebApp ## SYNOPSIS -Description for Creates a new static site in an existing resource group, or updates an existing static site. +Description for create a new static site in an existing resource group, or create an existing static site. ## SYNTAX +### CreateExpanded (Default) ``` New-AzStaticWebApp -Name -ResourceGroupName -Location [-SubscriptionId ] [-AllowConfigFileUpdate] [-ApiBuildCommand ] [-ApiLocation ] [-AppArtifactLocation ] [-AppBuildCommand ] [-AppLocation ] [-Branch ] [-Capacity ] - [-ForkRepositoryDescription ] [-ForkRepositoryIsPrivate] [-ForkRepositoryName ] - [-ForkRepositoryOwner ] [-GithubActionSecretNameOverride ] - [-IdentityType ] [-IdentityUserAssignedIdentity ] [-Kind ] - [-OutputLocation ] [-RepositoryToken ] [-RepositoryUrl ] - [-SkipGithubActionWorkflowGeneration] [-SkuName ] - [-StagingEnvironmentPolicy ] [-Tag ] [-TemplateRepositoryUrl ] + [-EnableSystemAssignedIdentity] [-ForkRepositoryDescription ] [-ForkRepositoryIsPrivate] + [-ForkRepositoryName ] [-ForkRepositoryOwner ] [-GithubActionSecretNameOverride ] + [-Kind ] [-OutputLocation ] [-RepositoryToken ] [-RepositoryUrl ] + [-SkipGithubActionWorkflowGeneration] [-SkuCapability ] [-SkuCapacityDefault ] + [-SkuCapacityElasticMaximum ] [-SkuCapacityMaximum ] [-SkuCapacityMinimum ] + [-SkuCapacityScaleType ] [-SkuFamily ] [-SkuLocation ] [-SkuName ] + [-SkuSize ] [-SkuTier ] [-StagingEnvironmentPolicy ] [-Tag ] + [-TemplateRepositoryUrl ] [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] + [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### CreateViaIdentityExpanded +``` +New-AzStaticWebApp -InputObject -Location [-AllowConfigFileUpdate] + [-ApiBuildCommand ] [-ApiLocation ] [-AppArtifactLocation ] + [-AppBuildCommand ] [-AppLocation ] [-Branch ] [-Capacity ] + [-EnableSystemAssignedIdentity] [-ForkRepositoryDescription ] [-ForkRepositoryIsPrivate] + [-ForkRepositoryName ] [-ForkRepositoryOwner ] [-GithubActionSecretNameOverride ] + [-Kind ] [-OutputLocation ] [-RepositoryToken ] [-RepositoryUrl ] + [-SkipGithubActionWorkflowGeneration] [-SkuCapability ] [-SkuCapacityDefault ] + [-SkuCapacityElasticMaximum ] [-SkuCapacityMaximum ] [-SkuCapacityMinimum ] + [-SkuCapacityScaleType ] [-SkuFamily ] [-SkuLocation ] [-SkuName ] + [-SkuSize ] [-SkuTier ] [-StagingEnvironmentPolicy ] [-Tag ] + [-TemplateRepositoryUrl ] [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] + [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonFilePath +``` +New-AzStaticWebApp -Name -ResourceGroupName -JsonFilePath + [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] +``` + +### CreateViaJsonString +``` +New-AzStaticWebApp -Name -ResourceGroupName -JsonString [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ## DESCRIPTION -Description for Creates a new static site in an existing resource group, or updates an existing static site. +Description for create a new static site in an existing resource group, or create an existing static site. ## EXAMPLES @@ -63,7 +95,7 @@ This command creates a new static site in an existing resource group, or updates ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -78,7 +110,7 @@ A custom command to run during deployment of the Azure Functions API application ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -93,7 +125,7 @@ The path to the api code within the repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -108,7 +140,7 @@ Deprecated: The path of the app artifacts after building (deprecated in favor of ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -123,7 +155,7 @@ A custom command to run during deployment of the static content application. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -138,7 +170,7 @@ The path to the app code within the repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -168,7 +200,7 @@ The target branch in the repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -183,7 +215,7 @@ Current number of instances assigned to the resource. ```yaml Type: System.Int32 -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -194,7 +226,8 @@ Accept wildcard characters: False ``` ### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. +The DefaultProfile parameter is not functional. +Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. ```yaml Type: System.Management.Automation.PSObject @@ -208,12 +241,27 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableSystemAssignedIdentity +Determines whether to enable a system-assigned identity for the resource. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ForkRepositoryDescription Description of the newly generated repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -230,7 +278,7 @@ public). ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -245,7 +293,7 @@ Name of the newly generated repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -260,7 +308,7 @@ Owner of the newly generated repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -275,7 +323,7 @@ Github Action secret name override. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -285,31 +333,45 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -IdentityType -Type of managed service identity. +### -InputObject +Identity Parameter ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.ManagedServiceIdentityType -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: CreateViaIdentityExpanded Aliases: -Required: False +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -IdentityUserAssignedIdentity -The list of user assigned identities associated with the resource. -The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName} +### -JsonString +Json string supplied to the Create operation ```yaml -Type: System.Collections.Hashtable -Parameter Sets: (All) +Type: System.String +Parameter Sets: CreateViaJsonString Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False @@ -321,7 +383,7 @@ Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -336,7 +398,7 @@ Resource Location. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: True @@ -351,7 +413,7 @@ Name of the static site to create or update. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -381,7 +443,7 @@ The output path of the app after building. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -397,7 +459,7 @@ This is used to setup the Github Actions workflow file and API secrets. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -412,7 +474,7 @@ URL for the repository of the static site. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -427,7 +489,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -442,7 +504,127 @@ Skip Github Action workflow generation. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuCapability +Capabilities of the SKU, e.g., is traffic manager enabled? + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ICapability[] +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuCapacityDefault +Default number of workers for this App Service plan SKU. + +```yaml +Type: System.Int32 +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuCapacityElasticMaximum +Maximum number of Elastic workers for this App Service plan SKU. + +```yaml +Type: System.Int32 +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuCapacityMaximum +Maximum number of workers for this App Service plan SKU. + +```yaml +Type: System.Int32 +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuCapacityMinimum +Minimum number of workers for this App Service plan SKU. + +```yaml +Type: System.Int32 +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuCapacityScaleType +Available scale configurations for an App Service plan. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuFamily +Family code of the resource SKU. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuLocation +Locations of the SKU. + +```yaml +Type: System.String[] +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -457,7 +639,37 @@ Name of the resource SKU. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuSize +Size specifier of the resource SKU. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuTier +Service tier of the resource SKU. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -471,8 +683,8 @@ Accept wildcard characters: False State indicating whether staging environments are allowed or not allowed for a static web app. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.StagingEnvironmentPolicy -Parameter Sets: (All) +Type: System.String +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -489,7 +701,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: False @@ -504,7 +716,7 @@ Resource tags. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -520,7 +732,23 @@ The newly generated repository will be based on this one. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UserAssignedIdentity +The array of user assigned identities associated with the resource. +The elements in array will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}.' + +```yaml +Type: System.String[] +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -566,9 +794,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity + ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteArmResource ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppBuildAppSetting.md b/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppBuildAppSetting.md index c46ad808425b..277be770c32d 100644 --- a/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppBuildAppSetting.md +++ b/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppBuildAppSetting.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzStaticWebAppBuildAppSetting ## SYNOPSIS -Description for Creates or updates the app settings of a static site build. +Description for create the app settings of a static site build. ## SYNTAX @@ -25,8 +25,29 @@ New-AzStaticWebAppBuildAppSetting -InputObject [-AppSetting [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` +### CreateViaIdentityStaticSiteExpanded +``` +New-AzStaticWebAppBuildAppSetting -EnvironmentName -StaticSiteInputObject + [-AppSetting ] [-Kind ] [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + +### CreateViaJsonFilePath +``` +New-AzStaticWebAppBuildAppSetting -EnvironmentName -Name -ResourceGroupName + -JsonFilePath [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + +### CreateViaJsonString +``` +New-AzStaticWebAppBuildAppSetting -EnvironmentName -Name -ResourceGroupName + -JsonString [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + ## DESCRIPTION -Description for Creates or updates the app settings of a static site build. +Description for create the app settings of a static site build. ## EXAMPLES @@ -63,7 +84,7 @@ Settings. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded, CreateViaIdentityStaticSiteExpanded Aliases: Required: False @@ -94,7 +115,7 @@ The stage site identifier. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaIdentityStaticSiteExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -106,7 +127,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -120,12 +140,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded, CreateViaIdentityStaticSiteExpanded Aliases: Required: False @@ -140,7 +190,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -155,7 +205,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -165,6 +215,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: CreateViaIdentityStaticSiteExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -172,7 +237,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: False @@ -222,7 +287,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringDictionary ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppBuildFunctionAppSetting.md b/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppBuildFunctionAppSetting.md index 7d4a0fd1a3fb..36fce356c969 100644 --- a/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppBuildFunctionAppSetting.md +++ b/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppBuildFunctionAppSetting.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzStaticWebAppBuildFunctionAppSetting ## SYNOPSIS -Description for Creates or updates the function app settings of a static site build. +Description for create the function app settings of a static site build. ## SYNTAX @@ -25,8 +25,29 @@ New-AzStaticWebAppBuildFunctionAppSetting -InputObject [-App [-Kind ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` +### CreateViaIdentityStaticSiteExpanded +``` +New-AzStaticWebAppBuildFunctionAppSetting -EnvironmentName -StaticSiteInputObject + [-AppSetting ] [-Kind ] [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + +### CreateViaJsonFilePath +``` +New-AzStaticWebAppBuildFunctionAppSetting -EnvironmentName -Name -ResourceGroupName + -JsonFilePath [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + +### CreateViaJsonString +``` +New-AzStaticWebAppBuildFunctionAppSetting -EnvironmentName -Name -ResourceGroupName + -JsonString [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + ## DESCRIPTION -Description for Creates or updates the function app settings of a static site build. +Description for create the function app settings of a static site build. ## EXAMPLES @@ -63,7 +84,7 @@ Settings. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded, CreateViaIdentityStaticSiteExpanded Aliases: Required: False @@ -94,7 +115,7 @@ The stage site identifier. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaIdentityStaticSiteExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -106,7 +127,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -120,12 +140,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded, CreateViaIdentityStaticSiteExpanded Aliases: Required: False @@ -140,7 +190,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -155,7 +205,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -165,6 +215,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: CreateViaIdentityStaticSiteExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -172,7 +237,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: False @@ -222,7 +287,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringDictionary ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppCustomDomain.md b/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppCustomDomain.md index d405d9639a11..f6d47f76e535 100644 --- a/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppCustomDomain.md +++ b/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppCustomDomain.md @@ -8,18 +8,40 @@ schema: 2.0.0 # New-AzStaticWebAppCustomDomain ## SYNOPSIS -Description for Creates a new static site custom domain in an existing resource group and static site. +Description for create a new static site custom domain in an existing resource group and static site. ## SYNTAX +### CreateExpanded (Default) ``` New-AzStaticWebAppCustomDomain -DomainName -Name -ResourceGroupName [-SubscriptionId ] [-Kind ] [-ValidationMethod ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` +### CreateViaIdentityStaticSiteExpanded +``` +New-AzStaticWebAppCustomDomain -DomainName -StaticSiteInputObject + [-Kind ] [-ValidationMethod ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] +``` + +### CreateViaJsonFilePath +``` +New-AzStaticWebAppCustomDomain -DomainName -Name -ResourceGroupName + -JsonFilePath [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] +``` + +### CreateViaJsonString +``` +New-AzStaticWebAppCustomDomain -DomainName -Name -ResourceGroupName + -JsonString [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] +``` + ## DESCRIPTION -Description for Creates a new static site custom domain in an existing resource group and static site. +Description for create a new static site custom domain in an existing resource group and static site. ## EXAMPLES @@ -85,12 +107,42 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityStaticSiteExpanded Aliases: Required: False @@ -105,7 +157,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -135,7 +187,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -145,6 +197,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: CreateViaIdentityStaticSiteExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -152,7 +219,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: False @@ -167,7 +234,7 @@ Validation method for adding a custom domain ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityStaticSiteExpanded Aliases: Required: False @@ -213,9 +280,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity + ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteCustomDomainOverviewArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteCustomDomainOverviewArmResource ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppFunctionAppSetting.md b/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppFunctionAppSetting.md index 30a6287d7635..b5a21e3f32e9 100644 --- a/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppFunctionAppSetting.md +++ b/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppFunctionAppSetting.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzStaticWebAppFunctionAppSetting ## SYNOPSIS -Description for Creates or updates the function app settings of a static site. +Description for create the function app settings of a static site. ## SYNTAX @@ -25,8 +25,20 @@ New-AzStaticWebAppFunctionAppSetting -InputObject [-AppSetti [-Kind ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` +### CreateViaJsonFilePath +``` +New-AzStaticWebAppFunctionAppSetting -Name -ResourceGroupName -JsonFilePath + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonString +``` +New-AzStaticWebAppFunctionAppSetting -Name -ResourceGroupName -JsonString + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Description for Creates or updates the function app settings of a static site. +Description for create the function app settings of a static site. ## EXAMPLES @@ -63,7 +75,7 @@ Settings. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -91,7 +103,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -105,12 +116,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -125,7 +166,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -140,7 +181,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -157,7 +198,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: False @@ -207,7 +248,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringDictionary ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppSetting.md b/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppSetting.md index dfe6b2b317a9..f0bab285488d 100644 --- a/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppSetting.md +++ b/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppSetting.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzStaticWebAppSetting ## SYNOPSIS -Description for Creates or updates the app settings of a static site. +Description for create the app settings of a static site. ## SYNTAX @@ -25,8 +25,20 @@ New-AzStaticWebAppSetting -InputObject [-AppSetting ] [-Confirm] [-WhatIf] [] ``` +### CreateViaJsonFilePath +``` +New-AzStaticWebAppSetting -Name -ResourceGroupName -JsonFilePath + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonString +``` +New-AzStaticWebAppSetting -Name -ResourceGroupName -JsonString + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Description for Creates or updates the app settings of a static site. +Description for create the app settings of a static site. ## EXAMPLES @@ -63,7 +75,7 @@ Settings. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -91,7 +103,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -105,12 +116,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -125,7 +166,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -140,7 +181,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -157,7 +198,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: False @@ -207,7 +248,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringDictionary ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppUserRoleInvitationLink.md b/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppUserRoleInvitationLink.md index 79aff985797b..8587753feb44 100644 --- a/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppUserRoleInvitationLink.md +++ b/src/Websites/Websites.Autorest/docs/New-AzStaticWebAppUserRoleInvitationLink.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzStaticWebAppUserRoleInvitationLink ## SYNOPSIS -Description for Creates an invitation link for a user with the role +Description for create an invitation link for a user with the role ## SYNTAX @@ -26,8 +26,20 @@ New-AzStaticWebAppUserRoleInvitationLink -InputObject [-Doma [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` +### CreateViaJsonFilePath +``` +New-AzStaticWebAppUserRoleInvitationLink -Name -ResourceGroupName -JsonFilePath + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonString +``` +New-AzStaticWebAppUserRoleInvitationLink -Name -ResourceGroupName -JsonString + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Description for Creates an invitation link for a user with the role +Description for create an invitation link for a user with the role ## EXAMPLES @@ -76,7 +88,7 @@ The domain name for the static site custom domain. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -88,7 +100,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -102,12 +113,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -122,7 +163,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -137,7 +178,7 @@ The number of hours the sas token stays valid ```yaml Type: System.Int32 -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -152,7 +193,7 @@ The identity provider for the static site user. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -167,7 +208,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -182,7 +223,7 @@ The roles for the static site user, in free-form string format ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -199,7 +240,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: False @@ -214,7 +255,7 @@ The user id for the static site user. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -264,7 +305,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteUserInvitationResponseResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserInvitationResponseResource ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Register-AzStaticWebAppUserProvidedFunctionApp.md b/src/Websites/Websites.Autorest/docs/Register-AzStaticWebAppUserProvidedFunctionApp.md index 83ec7279a962..34da82649ad4 100644 --- a/src/Websites/Websites.Autorest/docs/Register-AzStaticWebAppUserProvidedFunctionApp.md +++ b/src/Websites/Websites.Autorest/docs/Register-AzStaticWebAppUserProvidedFunctionApp.md @@ -28,6 +28,80 @@ Register-AzStaticWebAppUserProvidedFunctionApp -EnvironmentName -Functi [-WhatIf] [] ``` +### RegisterViaIdentityBuild +``` +Register-AzStaticWebAppUserProvidedFunctionApp -BuildInputObject -FunctionAppName + -StaticSiteUserProvidedFunctionEnvelope [-Forced] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### RegisterViaIdentityBuildExpanded +``` +Register-AzStaticWebAppUserProvidedFunctionApp -BuildInputObject -FunctionAppName + [-Forced] [-FunctionAppRegion ] [-FunctionAppResourceId ] [-Kind ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### RegisterViaIdentityStaticSite +``` +Register-AzStaticWebAppUserProvidedFunctionApp -EnvironmentName -FunctionAppName + -StaticSiteInputObject + -StaticSiteUserProvidedFunctionEnvelope [-Forced] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### RegisterViaIdentityStaticSite1 +``` +Register-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName + -StaticSite1InputObject + -StaticSiteUserProvidedFunctionEnvelope [-Forced] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### RegisterViaIdentityStaticSiteExpanded +``` +Register-AzStaticWebAppUserProvidedFunctionApp -EnvironmentName -FunctionAppName + -StaticSiteInputObject [-Forced] [-FunctionAppRegion ] + [-FunctionAppResourceId ] [-Kind ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] +``` + +### RegisterViaIdentityStaticSiteExpanded1 +``` +Register-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName + -StaticSiteInputObject [-Forced] [-FunctionAppRegion ] + [-FunctionAppResourceId ] [-Kind ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] +``` + +### RegisterViaJsonFilePath +``` +Register-AzStaticWebAppUserProvidedFunctionApp -EnvironmentName -FunctionAppName + -Name -ResourceGroupName -JsonFilePath [-SubscriptionId ] [-Forced] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### RegisterViaJsonFilePath1 +``` +Register-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName -Name + -ResourceGroupName -JsonFilePath [-SubscriptionId ] [-Forced] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### RegisterViaJsonString +``` +Register-AzStaticWebAppUserProvidedFunctionApp -EnvironmentName -FunctionAppName + -Name -ResourceGroupName -JsonString [-SubscriptionId ] [-Forced] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### RegisterViaJsonString1 +``` +Register-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName -Name + -ResourceGroupName -JsonString [-SubscriptionId ] [-Forced] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Description for Register a user provided function app with a static site build @@ -78,6 +152,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -BuildInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: RegisterViaIdentityBuild, RegisterViaIdentityBuildExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -99,7 +188,7 @@ The stage site identifier. ```yaml Type: System.String -Parameter Sets: RegisterExpanded +Parameter Sets: RegisterExpanded, RegisterViaIdentityStaticSite, RegisterViaIdentityStaticSiteExpanded, RegisterViaJsonFilePath, RegisterViaJsonString Aliases: Required: True @@ -145,7 +234,7 @@ The region of the function app registered with the static site ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: RegisterExpanded, RegisterExpanded1, RegisterViaIdentityBuildExpanded, RegisterViaIdentityStaticSiteExpanded, RegisterViaIdentityStaticSiteExpanded1 Aliases: Required: False @@ -160,7 +249,7 @@ The resource id of the function app registered with the static site ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: RegisterExpanded, RegisterExpanded1, RegisterViaIdentityBuildExpanded, RegisterViaIdentityStaticSiteExpanded, RegisterViaIdentityStaticSiteExpanded1 Aliases: Required: False @@ -170,12 +259,42 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Register operation + +```yaml +Type: System.String +Parameter Sets: RegisterViaJsonFilePath, RegisterViaJsonFilePath1 +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Register operation + +```yaml +Type: System.String +Parameter Sets: RegisterViaJsonString, RegisterViaJsonString1 +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: RegisterExpanded, RegisterExpanded1, RegisterViaIdentityBuildExpanded, RegisterViaIdentityStaticSiteExpanded, RegisterViaIdentityStaticSiteExpanded1 Aliases: Required: False @@ -190,7 +309,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: RegisterExpanded, RegisterExpanded1, RegisterViaJsonFilePath, RegisterViaJsonFilePath1, RegisterViaJsonString, RegisterViaJsonString1 Aliases: Required: True @@ -220,7 +339,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: RegisterExpanded, RegisterExpanded1, RegisterViaJsonFilePath, RegisterViaJsonFilePath1, RegisterViaJsonString, RegisterViaJsonString1 Aliases: Required: True @@ -230,6 +349,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSite1InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: RegisterViaIdentityStaticSite1 +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: RegisterViaIdentityStaticSite, RegisterViaIdentityStaticSiteExpanded, RegisterViaIdentityStaticSiteExpanded1 +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StaticSiteUserProvidedFunctionEnvelope +Static Site User Provided Function App ARM resource. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionAppArmResource +Parameter Sets: RegisterViaIdentityBuild, RegisterViaIdentityStaticSite, RegisterViaIdentityStaticSite1 +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -237,7 +401,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: RegisterExpanded, RegisterExpanded1, RegisterViaJsonFilePath, RegisterViaJsonFilePath1, RegisterViaJsonString, RegisterViaJsonString1 Aliases: Required: False @@ -283,9 +447,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionAppArmResource + +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity + ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteUserProvidedFunctionAppArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionAppArmResource ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebApp.md b/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebApp.md index 45b6636b9864..dc7e32843ad8 100644 --- a/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebApp.md +++ b/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebApp.md @@ -80,7 +80,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity diff --git a/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebAppAttachedRepository.md b/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebAppAttachedRepository.md index 122f79243f1e..2f31bb8fbacb 100644 --- a/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebAppAttachedRepository.md +++ b/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebAppAttachedRepository.md @@ -72,7 +72,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity diff --git a/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebAppBuild.md b/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebAppBuild.md index 0e6614eb4800..947054372401 100644 --- a/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebAppBuild.md +++ b/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebAppBuild.md @@ -25,6 +25,12 @@ Remove-AzStaticWebAppBuild -InputObject [-DefaultProfile ] ``` +### DeleteViaIdentityStaticSite +``` +Remove-AzStaticWebAppBuild -EnvironmentName -StaticSiteInputObject + [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Description for Deletes a static site build. @@ -84,7 +90,7 @@ The stage site identifier. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentityStaticSite Aliases: Required: True @@ -96,7 +102,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -170,6 +175,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebAppCustomDomain.md b/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebAppCustomDomain.md index 6f5fcfa334f1..e446e7e50b88 100644 --- a/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebAppCustomDomain.md +++ b/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebAppCustomDomain.md @@ -25,6 +25,12 @@ Remove-AzStaticWebAppCustomDomain -InputObject [-DefaultProf [-NoWait] [-PassThru] [-Confirm] [-WhatIf] [] ``` +### DeleteViaIdentityStaticSite +``` +Remove-AzStaticWebAppCustomDomain -DomainName -StaticSiteInputObject + [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Description for Deletes a custom domain. @@ -84,7 +90,7 @@ The custom domain to delete. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentityStaticSite Aliases: Required: True @@ -96,7 +102,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -170,6 +175,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebAppUser.md b/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebAppUser.md index f9ee6cee4f76..f79f2e563a1d 100644 --- a/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebAppUser.md +++ b/src/Websites/Websites.Autorest/docs/Remove-AzStaticWebAppUser.md @@ -24,6 +24,18 @@ Remove-AzStaticWebAppUser -InputObject [-DefaultProfile ] ``` +### DeleteViaIdentityAuthprovider +``` +Remove-AzStaticWebAppUser -AuthproviderInputObject -UserId + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### DeleteViaIdentityStaticSite +``` +Remove-AzStaticWebAppUser -AuthProvider -StaticSiteInputObject -UserId + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Description for Deletes the user entry from the static site. @@ -53,7 +65,7 @@ The auth provider for this user. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentityStaticSite Aliases: Required: True @@ -63,6 +75,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -AuthproviderInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentityAuthprovider +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -81,7 +108,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -140,6 +166,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -162,7 +203,7 @@ The user id of the user. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentityAuthprovider, DeleteViaIdentityStaticSite Aliases: Required: True diff --git a/src/Websites/Websites.Autorest/docs/Remove-AzWebAppContinuousWebJob.md b/src/Websites/Websites.Autorest/docs/Remove-AzWebAppContinuousWebJob.md index 28043e274600..8b8af098d0be 100644 --- a/src/Websites/Websites.Autorest/docs/Remove-AzWebAppContinuousWebJob.md +++ b/src/Websites/Websites.Autorest/docs/Remove-AzWebAppContinuousWebJob.md @@ -24,6 +24,12 @@ Remove-AzWebAppContinuousWebJob -InputObject [-DefaultProfil [-Confirm] [-WhatIf] [] ``` +### DeleteViaIdentitySite +``` +Remove-AzWebAppContinuousWebJob -Name -SiteInputObject + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Delete a continuous web job for an app. @@ -80,7 +86,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -99,7 +104,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentitySite Aliases: Required: True @@ -139,6 +144,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites.Autorest/docs/Remove-AzWebAppSlotContinuousWebJob.md b/src/Websites/Websites.Autorest/docs/Remove-AzWebAppSlotContinuousWebJob.md index 515590d6b5b2..7c664357b32a 100644 --- a/src/Websites/Websites.Autorest/docs/Remove-AzWebAppSlotContinuousWebJob.md +++ b/src/Websites/Websites.Autorest/docs/Remove-AzWebAppSlotContinuousWebJob.md @@ -25,6 +25,18 @@ Remove-AzWebAppSlotContinuousWebJob -InputObject [-DefaultPr [-Confirm] [-WhatIf] [] ``` +### DeleteViaIdentityContinuouswebjob +``` +Remove-AzWebAppSlotContinuousWebJob -ContinuouswebjobInputObject -SlotName + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### DeleteViaIdentitySite +``` +Remove-AzWebAppSlotContinuousWebJob -Name -SiteInputObject -SlotName + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Delete a continuous web job for a deployment slot. @@ -63,6 +75,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ContinuouswebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentityContinuouswebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -81,7 +108,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -100,7 +126,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentitySite Aliases: Required: True @@ -140,13 +166,28 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SlotName Name of the deployment slot. If a slot is not specified, the API deletes a deployment for the production slot. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentityContinuouswebjob, DeleteViaIdentitySite Aliases: Required: True diff --git a/src/Websites/Websites.Autorest/docs/Remove-AzWebAppSlotTriggeredWebJob.md b/src/Websites/Websites.Autorest/docs/Remove-AzWebAppSlotTriggeredWebJob.md index 865cff45a9a3..6d49a5e24c3c 100644 --- a/src/Websites/Websites.Autorest/docs/Remove-AzWebAppSlotTriggeredWebJob.md +++ b/src/Websites/Websites.Autorest/docs/Remove-AzWebAppSlotTriggeredWebJob.md @@ -25,6 +25,18 @@ Remove-AzWebAppSlotTriggeredWebJob -InputObject [-DefaultPro [-Confirm] [-WhatIf] [] ``` +### DeleteViaIdentitySite +``` +Remove-AzWebAppSlotTriggeredWebJob -Name -SiteInputObject -SlotName + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### DeleteViaIdentityTriggeredwebjob +``` +Remove-AzWebAppSlotTriggeredWebJob -SlotName -TriggeredwebjobInputObject + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Delete a triggered web job for a deployment slot. @@ -81,7 +93,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -100,7 +111,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentitySite Aliases: Required: True @@ -140,13 +151,28 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SlotName Name of the deployment slot. If a slot is not specified, the API deletes web job for the production slot. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentitySite, DeleteViaIdentityTriggeredwebjob Aliases: Required: True @@ -173,6 +199,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -TriggeredwebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentityTriggeredwebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. diff --git a/src/Websites/Websites.Autorest/docs/Remove-AzWebAppTriggeredWebJob.md b/src/Websites/Websites.Autorest/docs/Remove-AzWebAppTriggeredWebJob.md index b34d924ae7e3..d0d2cc8214bb 100644 --- a/src/Websites/Websites.Autorest/docs/Remove-AzWebAppTriggeredWebJob.md +++ b/src/Websites/Websites.Autorest/docs/Remove-AzWebAppTriggeredWebJob.md @@ -24,6 +24,12 @@ Remove-AzWebAppTriggeredWebJob -InputObject [-DefaultProfile [-Confirm] [-WhatIf] [] ``` +### DeleteViaIdentitySite +``` +Remove-AzWebAppTriggeredWebJob -Name -SiteInputObject + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Delete a triggered web job for an app. @@ -80,7 +86,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -99,7 +104,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentitySite Aliases: Required: True @@ -139,6 +144,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites.Autorest/docs/Reset-AzStaticWebAppApiKey.md b/src/Websites/Websites.Autorest/docs/Reset-AzStaticWebAppApiKey.md index 769685f8f63d..cea9cfd5f514 100644 --- a/src/Websites/Websites.Autorest/docs/Reset-AzStaticWebAppApiKey.md +++ b/src/Websites/Websites.Autorest/docs/Reset-AzStaticWebAppApiKey.md @@ -25,6 +25,18 @@ Reset-AzStaticWebAppApiKey -InputObject [-Kind ] [-R [-ShouldUpdateRepository] [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] ``` +### ResetViaJsonFilePath +``` +Reset-AzStaticWebAppApiKey -Name -ResourceGroupName -JsonFilePath + [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### ResetViaJsonString +``` +Reset-AzStaticWebAppApiKey -Name -ResourceGroupName -JsonString + [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Description for Resets the api key for an existing static site. @@ -66,7 +78,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -80,12 +91,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Reset operation + +```yaml +Type: System.String +Parameter Sets: ResetViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Reset operation + +```yaml +Type: System.String +Parameter Sets: ResetViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ResetExpanded, ResetViaIdentityExpanded Aliases: Required: False @@ -100,7 +141,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: ResetExpanded +Parameter Sets: ResetExpanded, ResetViaJsonFilePath, ResetViaJsonString Aliases: Required: True @@ -130,7 +171,7 @@ The token which proves admin privileges to the repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ResetExpanded, ResetViaIdentityExpanded Aliases: Required: False @@ -145,7 +186,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: ResetExpanded +Parameter Sets: ResetExpanded, ResetViaJsonFilePath, ResetViaJsonString Aliases: Required: True @@ -160,7 +201,7 @@ Determines whether the repository should be updated with the new properties. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: ResetExpanded, ResetViaIdentityExpanded Aliases: Required: False @@ -177,7 +218,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: ResetExpanded +Parameter Sets: ResetExpanded, ResetViaJsonFilePath, ResetViaJsonString Aliases: Required: False diff --git a/src/Websites/Websites.Autorest/docs/Start-AzWebAppContinuousWebJob.md b/src/Websites/Websites.Autorest/docs/Start-AzWebAppContinuousWebJob.md index e5fb4b1aa60d..641b274521a7 100644 --- a/src/Websites/Websites.Autorest/docs/Start-AzWebAppContinuousWebJob.md +++ b/src/Websites/Websites.Autorest/docs/Start-AzWebAppContinuousWebJob.md @@ -24,6 +24,12 @@ Start-AzWebAppContinuousWebJob -InputObject [-DefaultProfile [-Confirm] [-WhatIf] [] ``` +### StartViaIdentitySite +``` +Start-AzWebAppContinuousWebJob -Name -SiteInputObject + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Start a continuous web job for an app. @@ -80,7 +86,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -99,7 +104,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Start +Parameter Sets: Start, StartViaIdentitySite Aliases: Required: True @@ -139,6 +144,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: StartViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites.Autorest/docs/Start-AzWebAppSlotContinuousWebJob.md b/src/Websites/Websites.Autorest/docs/Start-AzWebAppSlotContinuousWebJob.md index 4d2bc30c460e..11c23a104ee2 100644 --- a/src/Websites/Websites.Autorest/docs/Start-AzWebAppSlotContinuousWebJob.md +++ b/src/Websites/Websites.Autorest/docs/Start-AzWebAppSlotContinuousWebJob.md @@ -25,6 +25,18 @@ Start-AzWebAppSlotContinuousWebJob -InputObject [-DefaultPro [-Confirm] [-WhatIf] [] ``` +### StartViaIdentityContinuouswebjob +``` +Start-AzWebAppSlotContinuousWebJob -ContinuouswebjobInputObject -SlotName + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### StartViaIdentitySite +``` +Start-AzWebAppSlotContinuousWebJob -Name -SiteInputObject -SlotName + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Start a continuous web job for a deployment slot. @@ -63,6 +75,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ContinuouswebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: StartViaIdentityContinuouswebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -81,7 +108,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -100,7 +126,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Start +Parameter Sets: Start, StartViaIdentitySite Aliases: Required: True @@ -140,13 +166,28 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: StartViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SlotName Name of the deployment slot. If a slot is not specified, the API deletes a deployment for the production slot. ```yaml Type: System.String -Parameter Sets: Start +Parameter Sets: Start, StartViaIdentityContinuouswebjob, StartViaIdentitySite Aliases: Required: True diff --git a/src/Websites/Websites.Autorest/docs/Start-AzWebAppSlotTriggeredWebJob.md b/src/Websites/Websites.Autorest/docs/Start-AzWebAppSlotTriggeredWebJob.md index 6281ba456555..b044de7d2c60 100644 --- a/src/Websites/Websites.Autorest/docs/Start-AzWebAppSlotTriggeredWebJob.md +++ b/src/Websites/Websites.Autorest/docs/Start-AzWebAppSlotTriggeredWebJob.md @@ -25,6 +25,18 @@ Start-AzWebAppSlotTriggeredWebJob -InputObject [-DefaultProf [-Confirm] [-WhatIf] [] ``` +### RunViaIdentitySite +``` +Start-AzWebAppSlotTriggeredWebJob -Name -SiteInputObject -SlotName + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### RunViaIdentityTriggeredwebjob +``` +Start-AzWebAppSlotTriggeredWebJob -SlotName -TriggeredwebjobInputObject + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Run a triggered web job for a deployment slot. @@ -81,7 +93,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -100,7 +111,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Run +Parameter Sets: Run, RunViaIdentitySite Aliases: Required: True @@ -140,13 +151,28 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: RunViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SlotName Name of the deployment slot. If a slot is not specified, the API uses the production slot. ```yaml Type: System.String -Parameter Sets: Run +Parameter Sets: Run, RunViaIdentitySite, RunViaIdentityTriggeredwebjob Aliases: Required: True @@ -173,6 +199,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -TriggeredwebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: RunViaIdentityTriggeredwebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. diff --git a/src/Websites/Websites.Autorest/docs/Start-AzWebAppTriggeredWebJob.md b/src/Websites/Websites.Autorest/docs/Start-AzWebAppTriggeredWebJob.md index e8ce861de212..d2357b7b53d7 100644 --- a/src/Websites/Websites.Autorest/docs/Start-AzWebAppTriggeredWebJob.md +++ b/src/Websites/Websites.Autorest/docs/Start-AzWebAppTriggeredWebJob.md @@ -24,6 +24,12 @@ Start-AzWebAppTriggeredWebJob -InputObject [-DefaultProfile [-Confirm] [-WhatIf] [] ``` +### RunViaIdentitySite +``` +Start-AzWebAppTriggeredWebJob -Name -SiteInputObject [-DefaultProfile ] + [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Run a triggered web job for an app. @@ -80,7 +86,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -99,7 +104,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Run +Parameter Sets: Run, RunViaIdentitySite Aliases: Required: True @@ -139,6 +144,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: RunViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites.Autorest/docs/Stop-AzWebAppContinuousWebJob.md b/src/Websites/Websites.Autorest/docs/Stop-AzWebAppContinuousWebJob.md index ff334e8de762..7fd796c40a1b 100644 --- a/src/Websites/Websites.Autorest/docs/Stop-AzWebAppContinuousWebJob.md +++ b/src/Websites/Websites.Autorest/docs/Stop-AzWebAppContinuousWebJob.md @@ -24,6 +24,12 @@ Stop-AzWebAppContinuousWebJob -InputObject [-DefaultProfile [-Confirm] [-WhatIf] [] ``` +### StopViaIdentitySite +``` +Stop-AzWebAppContinuousWebJob -Name -SiteInputObject [-DefaultProfile ] + [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Stop a continuous web job for an app. @@ -80,7 +86,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -99,7 +104,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Stop +Parameter Sets: Stop, StopViaIdentitySite Aliases: Required: True @@ -139,6 +144,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: StopViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites.Autorest/docs/Stop-AzWebAppSlotContinuousWebJob.md b/src/Websites/Websites.Autorest/docs/Stop-AzWebAppSlotContinuousWebJob.md index efe345ae63ed..0c5913221454 100644 --- a/src/Websites/Websites.Autorest/docs/Stop-AzWebAppSlotContinuousWebJob.md +++ b/src/Websites/Websites.Autorest/docs/Stop-AzWebAppSlotContinuousWebJob.md @@ -25,6 +25,18 @@ Stop-AzWebAppSlotContinuousWebJob -InputObject [-DefaultProf [-Confirm] [-WhatIf] [] ``` +### StopViaIdentityContinuouswebjob +``` +Stop-AzWebAppSlotContinuousWebJob -ContinuouswebjobInputObject -SlotName + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### StopViaIdentitySite +``` +Stop-AzWebAppSlotContinuousWebJob -Name -SiteInputObject -SlotName + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Stop a continuous web job for a deployment slot. @@ -63,6 +75,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ContinuouswebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: StopViaIdentityContinuouswebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -81,7 +108,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -100,7 +126,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Stop +Parameter Sets: Stop, StopViaIdentitySite Aliases: Required: True @@ -140,13 +166,28 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: StopViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SlotName Name of the deployment slot. If a slot is not specified, the API deletes a deployment for the production slot. ```yaml Type: System.String -Parameter Sets: Stop +Parameter Sets: Stop, StopViaIdentityContinuouswebjob, StopViaIdentitySite Aliases: Required: True diff --git a/src/Websites/Websites.Autorest/docs/Test-AzStaticWebAppCustomDomain.md b/src/Websites/Websites.Autorest/docs/Test-AzStaticWebAppCustomDomain.md index 1f7bbf86233b..0493a6396cb0 100644 --- a/src/Websites/Websites.Autorest/docs/Test-AzStaticWebAppCustomDomain.md +++ b/src/Websites/Websites.Autorest/docs/Test-AzStaticWebAppCustomDomain.md @@ -25,6 +25,34 @@ Test-AzStaticWebAppCustomDomain -InputObject [-Kind [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-Confirm] [-WhatIf] [] ``` +### ValidateViaIdentityStaticSite +``` +Test-AzStaticWebAppCustomDomain -DomainName -StaticSiteInputObject + -StaticSiteCustomDomainRequestPropertiesEnvelope + [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### ValidateViaIdentityStaticSiteExpanded +``` +Test-AzStaticWebAppCustomDomain -DomainName -StaticSiteInputObject + [-Kind ] [-ValidationMethod ] [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] + [-Confirm] [-WhatIf] [] +``` + +### ValidateViaJsonFilePath +``` +Test-AzStaticWebAppCustomDomain -DomainName -Name -ResourceGroupName + -JsonFilePath [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] + [-Confirm] [-WhatIf] [] +``` + +### ValidateViaJsonString +``` +Test-AzStaticWebAppCustomDomain -DomainName -Name -ResourceGroupName + -JsonString [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] + [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Description for Validates a particular custom domain can be added to a static site. @@ -84,7 +112,7 @@ The custom domain to validate. ```yaml Type: System.String -Parameter Sets: ValidateExpanded +Parameter Sets: ValidateExpanded, ValidateViaIdentityStaticSite, ValidateViaIdentityStaticSiteExpanded, ValidateViaJsonFilePath, ValidateViaJsonString Aliases: Required: True @@ -96,7 +124,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -110,12 +137,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Validate operation + +```yaml +Type: System.String +Parameter Sets: ValidateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Validate operation + +```yaml +Type: System.String +Parameter Sets: ValidateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ValidateExpanded, ValidateViaIdentityExpanded, ValidateViaIdentityStaticSiteExpanded Aliases: Required: False @@ -130,7 +187,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: ValidateExpanded +Parameter Sets: ValidateExpanded, ValidateViaJsonFilePath, ValidateViaJsonString Aliases: Required: True @@ -175,7 +232,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: ValidateExpanded +Parameter Sets: ValidateExpanded, ValidateViaJsonFilePath, ValidateViaJsonString Aliases: Required: True @@ -185,6 +242,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteCustomDomainRequestPropertiesEnvelope +Static Site Custom Domain Request Properties ARM resource. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteCustomDomainRequestPropertiesArmResource +Parameter Sets: ValidateViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: ValidateViaIdentityStaticSite, ValidateViaIdentityStaticSiteExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -192,7 +279,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: ValidateExpanded +Parameter Sets: ValidateExpanded, ValidateViaJsonFilePath, ValidateViaJsonString Aliases: Required: False @@ -207,7 +294,7 @@ Validation method for adding a custom domain ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ValidateExpanded, ValidateViaIdentityExpanded, ValidateViaIdentityStaticSiteExpanded Aliases: Required: False @@ -253,6 +340,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteCustomDomainRequestPropertiesArmResource + ### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity ## OUTPUTS diff --git a/src/Websites/Websites.Autorest/docs/Unregister-AzStaticWebAppBuildUserProvidedFunctionApp.md b/src/Websites/Websites.Autorest/docs/Unregister-AzStaticWebAppBuildUserProvidedFunctionApp.md index 0b8b6a9130cf..c86786110d93 100644 --- a/src/Websites/Websites.Autorest/docs/Unregister-AzStaticWebAppBuildUserProvidedFunctionApp.md +++ b/src/Websites/Websites.Autorest/docs/Unregister-AzStaticWebAppBuildUserProvidedFunctionApp.md @@ -25,6 +25,19 @@ Unregister-AzStaticWebAppBuildUserProvidedFunctionApp -InputObject ] [-PassThru] [-Confirm] [-WhatIf] [] ``` +### DetachViaIdentityBuild +``` +Unregister-AzStaticWebAppBuildUserProvidedFunctionApp -BuildInputObject + -FunctionAppName [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### DetachViaIdentityStaticSite +``` +Unregister-AzStaticWebAppBuildUserProvidedFunctionApp -EnvironmentName -FunctionAppName + -StaticSiteInputObject [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] + [] +``` + ## DESCRIPTION Description for Detach the user provided function app from the static site build @@ -48,6 +61,21 @@ This command unregisters the user provided function app from the static site bui ## PARAMETERS +### -BuildInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DetachViaIdentityBuild +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -69,7 +97,7 @@ The stage site identifier. ```yaml Type: System.String -Parameter Sets: Detach +Parameter Sets: Detach, DetachViaIdentityStaticSite Aliases: Required: True @@ -84,7 +112,7 @@ Name of the function app registered with the static site build. ```yaml Type: System.String -Parameter Sets: Detach +Parameter Sets: Detach, DetachViaIdentityBuild, DetachViaIdentityStaticSite Aliases: Required: True @@ -96,7 +124,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -155,6 +182,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DetachViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites.Autorest/docs/Unregister-AzStaticWebAppUserProvidedFunctionApp.md b/src/Websites/Websites.Autorest/docs/Unregister-AzStaticWebAppUserProvidedFunctionApp.md index b933049b0896..99c099aaa8a4 100644 --- a/src/Websites/Websites.Autorest/docs/Unregister-AzStaticWebAppUserProvidedFunctionApp.md +++ b/src/Websites/Websites.Autorest/docs/Unregister-AzStaticWebAppUserProvidedFunctionApp.md @@ -25,6 +25,13 @@ Unregister-AzStaticWebAppUserProvidedFunctionApp -InputObject ] ``` +### DetachViaIdentityStaticSite +``` +Unregister-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName + -StaticSiteInputObject [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] + [] +``` + ## DESCRIPTION Description for Detach the user provided function app from the static site @@ -69,7 +76,7 @@ Name of the function app registered with the static site. ```yaml Type: System.String -Parameter Sets: Detach +Parameter Sets: Detach, DetachViaIdentityStaticSite Aliases: Required: True @@ -81,7 +88,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -140,6 +146,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DetachViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites.Autorest/docs/Update-AzStaticWebApp.md b/src/Websites/Websites.Autorest/docs/Update-AzStaticWebApp.md index ea357eedcd00..8eede366e6c9 100644 --- a/src/Websites/Websites.Autorest/docs/Update-AzStaticWebApp.md +++ b/src/Websites/Websites.Autorest/docs/Update-AzStaticWebApp.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Update-AzStaticWebApp ## SYNOPSIS -Description for Creates a new static site in an existing resource group, or updates an existing static site. +Description for update a new static site in an existing resource group, or update an existing static site. ## SYNTAX @@ -20,8 +20,8 @@ Update-AzStaticWebApp -Name -ResourceGroupName [-SubscriptionI [-ForkRepositoryIsPrivate] [-ForkRepositoryName ] [-ForkRepositoryOwner ] [-GithubActionSecretNameOverride ] [-Kind ] [-OutputLocation ] [-RepositoryToken ] [-RepositoryUrl ] [-SkipGithubActionWorkflowGeneration] - [-StagingEnvironmentPolicy ] [-TemplateRepositoryUrl ] - [-DefaultProfile ] [-Confirm] [-WhatIf] [] + [-StagingEnvironmentPolicy ] [-TemplateRepositoryUrl ] [-DefaultProfile ] + [-Confirm] [-WhatIf] [] ``` ### UpdateViaIdentityExpanded @@ -31,12 +31,24 @@ Update-AzStaticWebApp -InputObject [-AllowConfigFileUpdate] [-Branch ] [-ForkRepositoryDescription ] [-ForkRepositoryIsPrivate] [-ForkRepositoryName ] [-ForkRepositoryOwner ] [-GithubActionSecretNameOverride ] [-Kind ] [-OutputLocation ] [-RepositoryToken ] [-RepositoryUrl ] - [-SkipGithubActionWorkflowGeneration] [-StagingEnvironmentPolicy ] - [-TemplateRepositoryUrl ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] + [-SkipGithubActionWorkflowGeneration] [-StagingEnvironmentPolicy ] [-TemplateRepositoryUrl ] + [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### UpdateViaJsonFilePath +``` +Update-AzStaticWebApp -Name -ResourceGroupName -JsonFilePath + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### UpdateViaJsonString +``` +Update-AzStaticWebApp -Name -ResourceGroupName -JsonString + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` ## DESCRIPTION -Description for Creates a new static site in an existing resource group, or updates an existing static site. +Description for update a new static site in an existing resource group, or update an existing static site. ## EXAMPLES @@ -73,7 +85,7 @@ This command updates a static site by pipeline. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -88,7 +100,7 @@ A custom command to run during deployment of the Azure Functions API application ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -103,7 +115,7 @@ The path to the api code within the repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -118,7 +130,7 @@ Deprecated: The path of the app artifacts after building (deprecated in favor of ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -133,7 +145,7 @@ A custom command to run during deployment of the static content application. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -148,7 +160,7 @@ The path to the app code within the repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -163,7 +175,7 @@ The target branch in the repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -194,7 +206,7 @@ Description of the newly generated repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -211,7 +223,7 @@ public). ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -226,7 +238,7 @@ Name of the newly generated repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -241,7 +253,7 @@ Owner of the newly generated repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -256,7 +268,7 @@ Github Action secret name override. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -268,7 +280,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -282,12 +293,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -302,7 +343,7 @@ Name of the static site to create or update. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: True @@ -317,7 +358,7 @@ The output path of the app after building. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -333,7 +374,7 @@ This is used to setup the Github Actions workflow file and API secrets. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -348,7 +389,7 @@ URL for the repository of the static site. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -363,7 +404,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: True @@ -378,7 +419,7 @@ Skip Github Action workflow generation. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -392,8 +433,8 @@ Accept wildcard characters: False State indicating whether staging environments are allowed or not allowed for a static web app. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.StagingEnvironmentPolicy -Parameter Sets: (All) +Type: System.String +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -410,7 +451,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: False @@ -426,7 +467,7 @@ The newly generated repository will be based on this one. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -476,7 +517,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteArmResource ## NOTES diff --git a/src/Websites/Websites.Autorest/docs/Update-AzStaticWebAppUser.md b/src/Websites/Websites.Autorest/docs/Update-AzStaticWebAppUser.md index a70c3e4aef71..0465124635da 100644 --- a/src/Websites/Websites.Autorest/docs/Update-AzStaticWebAppUser.md +++ b/src/Websites/Websites.Autorest/docs/Update-AzStaticWebAppUser.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Update-AzStaticWebAppUser ## SYNOPSIS -Description for Updates a user entry with the listed roles +Description for update a user entry with the listed roles ## SYNTAX @@ -19,14 +19,54 @@ Update-AzStaticWebAppUser -AuthProvider -Name -ResourceGroupNa [-WhatIf] [] ``` +### UpdateViaIdentityAuthprovider +``` +Update-AzStaticWebAppUser -AuthproviderInputObject -UserId + -StaticSiteUserEnvelope [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + +### UpdateViaIdentityAuthproviderExpanded +``` +Update-AzStaticWebAppUser -AuthproviderInputObject -UserId [-Kind ] + [-Role ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + ### UpdateViaIdentityExpanded ``` Update-AzStaticWebAppUser -InputObject [-Kind ] [-Role ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` +### UpdateViaIdentityStaticSite +``` +Update-AzStaticWebAppUser -AuthProvider -StaticSiteInputObject -UserId + -StaticSiteUserEnvelope [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + +### UpdateViaIdentityStaticSiteExpanded +``` +Update-AzStaticWebAppUser -AuthProvider -StaticSiteInputObject -UserId + [-Kind ] [-Role ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### UpdateViaJsonFilePath +``` +Update-AzStaticWebAppUser -AuthProvider -Name -ResourceGroupName -UserId + -JsonFilePath [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + +### UpdateViaJsonString +``` +Update-AzStaticWebAppUser -AuthProvider -Name -ResourceGroupName -UserId + -JsonString [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + ## DESCRIPTION -Description for Updates a user entry with the listed roles +Description for update a user entry with the listed roles ## EXAMPLES @@ -64,7 +104,7 @@ The auth provider for this user. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaIdentityStaticSite, UpdateViaIdentityStaticSiteExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: True @@ -74,6 +114,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -AuthproviderInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: UpdateViaIdentityAuthprovider, UpdateViaIdentityAuthproviderExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -92,7 +147,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -106,12 +160,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityAuthproviderExpanded, UpdateViaIdentityExpanded, UpdateViaIdentityStaticSiteExpanded Aliases: Required: False @@ -126,7 +210,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: True @@ -141,7 +225,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: True @@ -156,7 +240,7 @@ The roles for the static site user, in free-form string format ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityAuthproviderExpanded, UpdateViaIdentityExpanded, UpdateViaIdentityStaticSiteExpanded Aliases: Required: False @@ -166,6 +250,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: UpdateViaIdentityStaticSite, UpdateViaIdentityStaticSiteExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StaticSiteUserEnvelope +Static Site User ARM resource. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserArmResource +Parameter Sets: UpdateViaIdentityAuthprovider, UpdateViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -173,7 +287,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: False @@ -188,7 +302,7 @@ The user id of the user. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaIdentityAuthprovider, UpdateViaIdentityAuthproviderExpanded, UpdateViaIdentityStaticSite, UpdateViaIdentityStaticSiteExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: True @@ -234,11 +348,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserArmResource + ### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteUserArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserArmResource ## NOTES diff --git a/src/Websites/Websites.Autorest/generate-info.json b/src/Websites/Websites.Autorest/generate-info.json index 1a0d034b435a..88a4f24d1f8d 100644 --- a/src/Websites/Websites.Autorest/generate-info.json +++ b/src/Websites/Websites.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "fde66cdb-a71d-4477-a53e-b9889e16c976" + "generate_Id": "8be97281-d8e1-4e67-a408-f3eda4c9a7ae" } diff --git a/src/Websites/Websites.Autorest/resources/README.md b/src/Websites/Websites.Autorest/resources/README.md new file mode 100644 index 000000000000..937f07f8fec2 --- /dev/null +++ b/src/Websites/Websites.Autorest/resources/README.md @@ -0,0 +1,11 @@ +# Resources +This directory can contain any additional resources for module that are not required at runtime. This directory **does not** get packaged with the module. If you have assets for custom implementation, place them into the `..\custom` folder. + +## Info +- Modifiable: yes +- Generated: no +- Committed: yes +- Packaged: no + +## Purpose +Use this folder to put anything you want to keep around as part of the repository for the module, but is not something that is required for the module. For example, development files, packaged builds, or additional information. This is only intended to be used in repositories where the module's output directory is cleaned, but tangential resources for the module want to remain intact. \ No newline at end of file diff --git a/src/Websites/Websites.sln b/src/Websites/Websites.sln index e46b363df002..7d3392c96081 100644 --- a/src/Websites/Websites.sln +++ b/src/Websites/Websites.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.31903.59 @@ -33,69 +33,179 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Websites", "Websites\Websit EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestFx", "..\..\tools\TestFx\TestFx.csproj", "{A3FBC234-434F-4C1C-9721-D55C14E6CF59}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Websites", "..\..\generated\Websites\Websites.Autorest\Az.Websites.csproj", "{52333454-9C85-4F05-9F31-09EC74DEDAF2}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Websites.Autorest", "Websites.Autorest", "{900AEDEE-C556-8DEE-573E-ADA5C00E8E41}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Websites", "..\..\generated\Websites\Websites.Autorest\Az.Websites.csproj", "{C9D5397C-3543-481E-A990-C6298BF6A286}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE + Release|x64 = Release|x64 + Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {DFB63A49-2771-491E-84EB-6DE370B730E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {DFB63A49-2771-491E-84EB-6DE370B730E1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DFB63A49-2771-491E-84EB-6DE370B730E1}.Debug|x64.ActiveCfg = Debug|Any CPU + {DFB63A49-2771-491E-84EB-6DE370B730E1}.Debug|x64.Build.0 = Debug|Any CPU + {DFB63A49-2771-491E-84EB-6DE370B730E1}.Debug|x86.ActiveCfg = Debug|Any CPU + {DFB63A49-2771-491E-84EB-6DE370B730E1}.Debug|x86.Build.0 = Debug|Any CPU {DFB63A49-2771-491E-84EB-6DE370B730E1}.Release|Any CPU.ActiveCfg = Release|Any CPU {DFB63A49-2771-491E-84EB-6DE370B730E1}.Release|Any CPU.Build.0 = Release|Any CPU + {DFB63A49-2771-491E-84EB-6DE370B730E1}.Release|x64.ActiveCfg = Release|Any CPU + {DFB63A49-2771-491E-84EB-6DE370B730E1}.Release|x64.Build.0 = Release|Any CPU + {DFB63A49-2771-491E-84EB-6DE370B730E1}.Release|x86.ActiveCfg = Release|Any CPU + {DFB63A49-2771-491E-84EB-6DE370B730E1}.Release|x86.Build.0 = Release|Any CPU {F3C36C5B-76A6-41D5-874F-EB90ECD2B5BC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F3C36C5B-76A6-41D5-874F-EB90ECD2B5BC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F3C36C5B-76A6-41D5-874F-EB90ECD2B5BC}.Debug|x64.ActiveCfg = Debug|Any CPU + {F3C36C5B-76A6-41D5-874F-EB90ECD2B5BC}.Debug|x64.Build.0 = Debug|Any CPU + {F3C36C5B-76A6-41D5-874F-EB90ECD2B5BC}.Debug|x86.ActiveCfg = Debug|Any CPU + {F3C36C5B-76A6-41D5-874F-EB90ECD2B5BC}.Debug|x86.Build.0 = Debug|Any CPU {F3C36C5B-76A6-41D5-874F-EB90ECD2B5BC}.Release|Any CPU.ActiveCfg = Release|Any CPU {F3C36C5B-76A6-41D5-874F-EB90ECD2B5BC}.Release|Any CPU.Build.0 = Release|Any CPU + {F3C36C5B-76A6-41D5-874F-EB90ECD2B5BC}.Release|x64.ActiveCfg = Release|Any CPU + {F3C36C5B-76A6-41D5-874F-EB90ECD2B5BC}.Release|x64.Build.0 = Release|Any CPU + {F3C36C5B-76A6-41D5-874F-EB90ECD2B5BC}.Release|x86.ActiveCfg = Release|Any CPU + {F3C36C5B-76A6-41D5-874F-EB90ECD2B5BC}.Release|x86.Build.0 = Release|Any CPU {FE515EDC-2E98-4EED-9688-F1AEA3852806}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {FE515EDC-2E98-4EED-9688-F1AEA3852806}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FE515EDC-2E98-4EED-9688-F1AEA3852806}.Debug|x64.ActiveCfg = Debug|Any CPU + {FE515EDC-2E98-4EED-9688-F1AEA3852806}.Debug|x64.Build.0 = Debug|Any CPU + {FE515EDC-2E98-4EED-9688-F1AEA3852806}.Debug|x86.ActiveCfg = Debug|Any CPU + {FE515EDC-2E98-4EED-9688-F1AEA3852806}.Debug|x86.Build.0 = Debug|Any CPU {FE515EDC-2E98-4EED-9688-F1AEA3852806}.Release|Any CPU.ActiveCfg = Release|Any CPU {FE515EDC-2E98-4EED-9688-F1AEA3852806}.Release|Any CPU.Build.0 = Release|Any CPU + {FE515EDC-2E98-4EED-9688-F1AEA3852806}.Release|x64.ActiveCfg = Release|Any CPU + {FE515EDC-2E98-4EED-9688-F1AEA3852806}.Release|x64.Build.0 = Release|Any CPU + {FE515EDC-2E98-4EED-9688-F1AEA3852806}.Release|x86.ActiveCfg = Release|Any CPU + {FE515EDC-2E98-4EED-9688-F1AEA3852806}.Release|x86.Build.0 = Release|Any CPU {2A9AE633-EA85-4F48-9B09-BE6CA9FD93A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {2A9AE633-EA85-4F48-9B09-BE6CA9FD93A6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2A9AE633-EA85-4F48-9B09-BE6CA9FD93A6}.Debug|x64.ActiveCfg = Debug|Any CPU + {2A9AE633-EA85-4F48-9B09-BE6CA9FD93A6}.Debug|x64.Build.0 = Debug|Any CPU + {2A9AE633-EA85-4F48-9B09-BE6CA9FD93A6}.Debug|x86.ActiveCfg = Debug|Any CPU + {2A9AE633-EA85-4F48-9B09-BE6CA9FD93A6}.Debug|x86.Build.0 = Debug|Any CPU {2A9AE633-EA85-4F48-9B09-BE6CA9FD93A6}.Release|Any CPU.ActiveCfg = Release|Any CPU {2A9AE633-EA85-4F48-9B09-BE6CA9FD93A6}.Release|Any CPU.Build.0 = Release|Any CPU + {2A9AE633-EA85-4F48-9B09-BE6CA9FD93A6}.Release|x64.ActiveCfg = Release|Any CPU + {2A9AE633-EA85-4F48-9B09-BE6CA9FD93A6}.Release|x64.Build.0 = Release|Any CPU + {2A9AE633-EA85-4F48-9B09-BE6CA9FD93A6}.Release|x86.ActiveCfg = Release|Any CPU + {2A9AE633-EA85-4F48-9B09-BE6CA9FD93A6}.Release|x86.Build.0 = Release|Any CPU {615A6290-6930-4908-8DC2-B465105E05F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {615A6290-6930-4908-8DC2-B465105E05F9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {615A6290-6930-4908-8DC2-B465105E05F9}.Debug|x64.ActiveCfg = Debug|Any CPU + {615A6290-6930-4908-8DC2-B465105E05F9}.Debug|x64.Build.0 = Debug|Any CPU + {615A6290-6930-4908-8DC2-B465105E05F9}.Debug|x86.ActiveCfg = Debug|Any CPU + {615A6290-6930-4908-8DC2-B465105E05F9}.Debug|x86.Build.0 = Debug|Any CPU {615A6290-6930-4908-8DC2-B465105E05F9}.Release|Any CPU.ActiveCfg = Release|Any CPU {615A6290-6930-4908-8DC2-B465105E05F9}.Release|Any CPU.Build.0 = Release|Any CPU + {615A6290-6930-4908-8DC2-B465105E05F9}.Release|x64.ActiveCfg = Release|Any CPU + {615A6290-6930-4908-8DC2-B465105E05F9}.Release|x64.Build.0 = Release|Any CPU + {615A6290-6930-4908-8DC2-B465105E05F9}.Release|x86.ActiveCfg = Release|Any CPU + {615A6290-6930-4908-8DC2-B465105E05F9}.Release|x86.Build.0 = Release|Any CPU {871E97FD-7F26-4034-A0E9-948959231BDA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {871E97FD-7F26-4034-A0E9-948959231BDA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {871E97FD-7F26-4034-A0E9-948959231BDA}.Debug|x64.ActiveCfg = Debug|Any CPU + {871E97FD-7F26-4034-A0E9-948959231BDA}.Debug|x64.Build.0 = Debug|Any CPU + {871E97FD-7F26-4034-A0E9-948959231BDA}.Debug|x86.ActiveCfg = Debug|Any CPU + {871E97FD-7F26-4034-A0E9-948959231BDA}.Debug|x86.Build.0 = Debug|Any CPU {871E97FD-7F26-4034-A0E9-948959231BDA}.Release|Any CPU.ActiveCfg = Release|Any CPU {871E97FD-7F26-4034-A0E9-948959231BDA}.Release|Any CPU.Build.0 = Release|Any CPU + {871E97FD-7F26-4034-A0E9-948959231BDA}.Release|x64.ActiveCfg = Release|Any CPU + {871E97FD-7F26-4034-A0E9-948959231BDA}.Release|x64.Build.0 = Release|Any CPU + {871E97FD-7F26-4034-A0E9-948959231BDA}.Release|x86.ActiveCfg = Release|Any CPU + {871E97FD-7F26-4034-A0E9-948959231BDA}.Release|x86.Build.0 = Release|Any CPU {AB780C63-11A3-42C7-9AD3-A8771E435349}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {AB780C63-11A3-42C7-9AD3-A8771E435349}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AB780C63-11A3-42C7-9AD3-A8771E435349}.Debug|x64.ActiveCfg = Debug|Any CPU + {AB780C63-11A3-42C7-9AD3-A8771E435349}.Debug|x64.Build.0 = Debug|Any CPU + {AB780C63-11A3-42C7-9AD3-A8771E435349}.Debug|x86.ActiveCfg = Debug|Any CPU + {AB780C63-11A3-42C7-9AD3-A8771E435349}.Debug|x86.Build.0 = Debug|Any CPU {AB780C63-11A3-42C7-9AD3-A8771E435349}.Release|Any CPU.ActiveCfg = Release|Any CPU {AB780C63-11A3-42C7-9AD3-A8771E435349}.Release|Any CPU.Build.0 = Release|Any CPU + {AB780C63-11A3-42C7-9AD3-A8771E435349}.Release|x64.ActiveCfg = Release|Any CPU + {AB780C63-11A3-42C7-9AD3-A8771E435349}.Release|x64.Build.0 = Release|Any CPU + {AB780C63-11A3-42C7-9AD3-A8771E435349}.Release|x86.ActiveCfg = Release|Any CPU + {AB780C63-11A3-42C7-9AD3-A8771E435349}.Release|x86.Build.0 = Release|Any CPU {A2A07768-727E-44A6-91A0-8DFC18B3A21C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {A2A07768-727E-44A6-91A0-8DFC18B3A21C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A2A07768-727E-44A6-91A0-8DFC18B3A21C}.Debug|x64.ActiveCfg = Debug|Any CPU + {A2A07768-727E-44A6-91A0-8DFC18B3A21C}.Debug|x64.Build.0 = Debug|Any CPU + {A2A07768-727E-44A6-91A0-8DFC18B3A21C}.Debug|x86.ActiveCfg = Debug|Any CPU + {A2A07768-727E-44A6-91A0-8DFC18B3A21C}.Debug|x86.Build.0 = Debug|Any CPU {A2A07768-727E-44A6-91A0-8DFC18B3A21C}.Release|Any CPU.ActiveCfg = Release|Any CPU {A2A07768-727E-44A6-91A0-8DFC18B3A21C}.Release|Any CPU.Build.0 = Release|Any CPU + {A2A07768-727E-44A6-91A0-8DFC18B3A21C}.Release|x64.ActiveCfg = Release|Any CPU + {A2A07768-727E-44A6-91A0-8DFC18B3A21C}.Release|x64.Build.0 = Release|Any CPU + {A2A07768-727E-44A6-91A0-8DFC18B3A21C}.Release|x86.ActiveCfg = Release|Any CPU + {A2A07768-727E-44A6-91A0-8DFC18B3A21C}.Release|x86.Build.0 = Release|Any CPU {F96BA6FE-62F8-453F-943E-058691B28C24}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F96BA6FE-62F8-453F-943E-058691B28C24}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F96BA6FE-62F8-453F-943E-058691B28C24}.Debug|x64.ActiveCfg = Debug|Any CPU + {F96BA6FE-62F8-453F-943E-058691B28C24}.Debug|x64.Build.0 = Debug|Any CPU + {F96BA6FE-62F8-453F-943E-058691B28C24}.Debug|x86.ActiveCfg = Debug|Any CPU + {F96BA6FE-62F8-453F-943E-058691B28C24}.Debug|x86.Build.0 = Debug|Any CPU {F96BA6FE-62F8-453F-943E-058691B28C24}.Release|Any CPU.ActiveCfg = Release|Any CPU {F96BA6FE-62F8-453F-943E-058691B28C24}.Release|Any CPU.Build.0 = Release|Any CPU + {F96BA6FE-62F8-453F-943E-058691B28C24}.Release|x64.ActiveCfg = Release|Any CPU + {F96BA6FE-62F8-453F-943E-058691B28C24}.Release|x64.Build.0 = Release|Any CPU + {F96BA6FE-62F8-453F-943E-058691B28C24}.Release|x86.ActiveCfg = Release|Any CPU + {F96BA6FE-62F8-453F-943E-058691B28C24}.Release|x86.Build.0 = Release|Any CPU {BE011844-9309-4A55-BA04-FD41DF8F2700}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {BE011844-9309-4A55-BA04-FD41DF8F2700}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BE011844-9309-4A55-BA04-FD41DF8F2700}.Debug|x64.ActiveCfg = Debug|Any CPU + {BE011844-9309-4A55-BA04-FD41DF8F2700}.Debug|x64.Build.0 = Debug|Any CPU + {BE011844-9309-4A55-BA04-FD41DF8F2700}.Debug|x86.ActiveCfg = Debug|Any CPU + {BE011844-9309-4A55-BA04-FD41DF8F2700}.Debug|x86.Build.0 = Debug|Any CPU {BE011844-9309-4A55-BA04-FD41DF8F2700}.Release|Any CPU.ActiveCfg = Release|Any CPU {BE011844-9309-4A55-BA04-FD41DF8F2700}.Release|Any CPU.Build.0 = Release|Any CPU + {BE011844-9309-4A55-BA04-FD41DF8F2700}.Release|x64.ActiveCfg = Release|Any CPU + {BE011844-9309-4A55-BA04-FD41DF8F2700}.Release|x64.Build.0 = Release|Any CPU + {BE011844-9309-4A55-BA04-FD41DF8F2700}.Release|x86.ActiveCfg = Release|Any CPU + {BE011844-9309-4A55-BA04-FD41DF8F2700}.Release|x86.Build.0 = Release|Any CPU {5EBACE61-3578-4B3D-8DF9-8CC68D78F573}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {5EBACE61-3578-4B3D-8DF9-8CC68D78F573}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5EBACE61-3578-4B3D-8DF9-8CC68D78F573}.Debug|x64.ActiveCfg = Debug|Any CPU + {5EBACE61-3578-4B3D-8DF9-8CC68D78F573}.Debug|x64.Build.0 = Debug|Any CPU + {5EBACE61-3578-4B3D-8DF9-8CC68D78F573}.Debug|x86.ActiveCfg = Debug|Any CPU + {5EBACE61-3578-4B3D-8DF9-8CC68D78F573}.Debug|x86.Build.0 = Debug|Any CPU {5EBACE61-3578-4B3D-8DF9-8CC68D78F573}.Release|Any CPU.ActiveCfg = Release|Any CPU {5EBACE61-3578-4B3D-8DF9-8CC68D78F573}.Release|Any CPU.Build.0 = Release|Any CPU + {5EBACE61-3578-4B3D-8DF9-8CC68D78F573}.Release|x64.ActiveCfg = Release|Any CPU + {5EBACE61-3578-4B3D-8DF9-8CC68D78F573}.Release|x64.Build.0 = Release|Any CPU + {5EBACE61-3578-4B3D-8DF9-8CC68D78F573}.Release|x86.ActiveCfg = Release|Any CPU + {5EBACE61-3578-4B3D-8DF9-8CC68D78F573}.Release|x86.Build.0 = Release|Any CPU {A3FBC234-434F-4C1C-9721-D55C14E6CF59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {A3FBC234-434F-4C1C-9721-D55C14E6CF59}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A3FBC234-434F-4C1C-9721-D55C14E6CF59}.Debug|x64.ActiveCfg = Debug|Any CPU + {A3FBC234-434F-4C1C-9721-D55C14E6CF59}.Debug|x64.Build.0 = Debug|Any CPU + {A3FBC234-434F-4C1C-9721-D55C14E6CF59}.Debug|x86.ActiveCfg = Debug|Any CPU + {A3FBC234-434F-4C1C-9721-D55C14E6CF59}.Debug|x86.Build.0 = Debug|Any CPU {A3FBC234-434F-4C1C-9721-D55C14E6CF59}.Release|Any CPU.ActiveCfg = Release|Any CPU {A3FBC234-434F-4C1C-9721-D55C14E6CF59}.Release|Any CPU.Build.0 = Release|Any CPU - {52333454-9C85-4F05-9F31-09EC74DEDAF2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {52333454-9C85-4F05-9F31-09EC74DEDAF2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {52333454-9C85-4F05-9F31-09EC74DEDAF2}.Release|Any CPU.ActiveCfg = Release|Any CPU - {52333454-9C85-4F05-9F31-09EC74DEDAF2}.Release|Any CPU.Build.0 = Release|Any CPU + {A3FBC234-434F-4C1C-9721-D55C14E6CF59}.Release|x64.ActiveCfg = Release|Any CPU + {A3FBC234-434F-4C1C-9721-D55C14E6CF59}.Release|x64.Build.0 = Release|Any CPU + {A3FBC234-434F-4C1C-9721-D55C14E6CF59}.Release|x86.ActiveCfg = Release|Any CPU + {A3FBC234-434F-4C1C-9721-D55C14E6CF59}.Release|x86.Build.0 = Release|Any CPU + {C9D5397C-3543-481E-A990-C6298BF6A286}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C9D5397C-3543-481E-A990-C6298BF6A286}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C9D5397C-3543-481E-A990-C6298BF6A286}.Debug|x64.ActiveCfg = Debug|Any CPU + {C9D5397C-3543-481E-A990-C6298BF6A286}.Debug|x64.Build.0 = Debug|Any CPU + {C9D5397C-3543-481E-A990-C6298BF6A286}.Debug|x86.ActiveCfg = Debug|Any CPU + {C9D5397C-3543-481E-A990-C6298BF6A286}.Debug|x86.Build.0 = Debug|Any CPU + {C9D5397C-3543-481E-A990-C6298BF6A286}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C9D5397C-3543-481E-A990-C6298BF6A286}.Release|Any CPU.Build.0 = Release|Any CPU + {C9D5397C-3543-481E-A990-C6298BF6A286}.Release|x64.ActiveCfg = Release|Any CPU + {C9D5397C-3543-481E-A990-C6298BF6A286}.Release|x64.Build.0 = Release|Any CPU + {C9D5397C-3543-481E-A990-C6298BF6A286}.Release|x86.ActiveCfg = Release|Any CPU + {C9D5397C-3543-481E-A990-C6298BF6A286}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution {DFB63A49-2771-491E-84EB-6DE370B730E1} = {41C9F58D-9ABC-43BB-A274-2E7E2F17BFAE} @@ -109,5 +219,6 @@ Global {A2A07768-727E-44A6-91A0-8DFC18B3A21C} = {4B610034-1263-4F14-8AA5-E2EB60BA7015} {BE011844-9309-4A55-BA04-FD41DF8F2700} = {EE35FE1C-D292-4F41-BD5C-3EAC5A7D3211} {A3FBC234-434F-4C1C-9721-D55C14E6CF59} = {EE35FE1C-D292-4F41-BD5C-3EAC5A7D3211} + {C9D5397C-3543-481E-A990-C6298BF6A286} = {900AEDEE-C556-8DEE-573E-ADA5C00E8E41} EndGlobalSection EndGlobal diff --git a/src/Websites/Websites/Az.Websites.psd1 b/src/Websites/Websites/Az.Websites.psd1 index a7dd0cf31420..eb126534d7d7 100644 --- a/src/Websites/Websites/Az.Websites.psd1 +++ b/src/Websites/Websites/Az.Websites.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 4/30/2025 +# Generated on: 7/31/2025 # @{ @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.2.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.1.1'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Management.Websites.dll', @@ -61,13 +61,13 @@ RequiredAssemblies = 'Microsoft.Azure.Management.Websites.dll', 'Websites.Autorest/bin/Az.Websites.private.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. -# ScriptsToProcess = @() +ScriptsToProcess = @() # Type files (.ps1xml) to be loaded when importing this module -# TypesToProcess = @() +TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module -FormatsToProcess = 'Websites.Autorest\Az.Websites.format.ps1xml', +FormatsToProcess = 'Websites.Autorest/Az.Websites.format.ps1xml', 'Websites.format.ps1xml' # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess @@ -164,7 +164,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','Websites','Website','AppService' + Tags = 'Azure', 'ResourceManager', 'ARM', 'Websites', 'Website', 'AppService' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' @@ -189,7 +189,7 @@ PrivateData = @{ } # End of PSData hashtable - } # End of PrivateData hashtable +} # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' diff --git a/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md index 3b574d42875e..0cb7df8dabf0 100644 --- a/src/Websites/Websites/ChangeLog.md +++ b/src/Websites/Websites/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Improved user experience and consistency. This may introduce breaking changes. Please refer to [here](https://go.microsoft.com/fwlink/?linkid=2340249). ## Version 3.4.1 * Added AppServicePlan management support for Pv4 and Pmv4 tiers. diff --git a/src/Websites/Websites/help/Az.Websites.md b/src/Websites/Websites/help/Az.Websites.md index d722be927cad..20fa3b7922ed 100644 --- a/src/Websites/Websites/help/Az.Websites.md +++ b/src/Websites/Websites/help/Az.Websites.md @@ -147,25 +147,25 @@ Creates inbound services for App Service Environment. For ASEv2 ILB, this will c Creates an Azure App Service plan in a given Geo location. ### [New-AzStaticWebApp](New-AzStaticWebApp.md) -Description for Creates a new static site in an existing resource group, or updates an existing static site. +Description for create a new static site in an existing resource group, or create an existing static site. ### [New-AzStaticWebAppBuildAppSetting](New-AzStaticWebAppBuildAppSetting.md) -Description for Creates or updates the app settings of a static site build. +Description for create the app settings of a static site build. ### [New-AzStaticWebAppBuildFunctionAppSetting](New-AzStaticWebAppBuildFunctionAppSetting.md) -Description for Creates or updates the function app settings of a static site build. +Description for create the function app settings of a static site build. ### [New-AzStaticWebAppCustomDomain](New-AzStaticWebAppCustomDomain.md) -Description for Creates a new static site custom domain in an existing resource group and static site. +Description for create a new static site custom domain in an existing resource group and static site. ### [New-AzStaticWebAppFunctionAppSetting](New-AzStaticWebAppFunctionAppSetting.md) -Description for Creates or updates the function app settings of a static site. +Description for create the function app settings of a static site. ### [New-AzStaticWebAppSetting](New-AzStaticWebAppSetting.md) -Description for Creates or updates the app settings of a static site. +Description for create the app settings of a static site. ### [New-AzStaticWebAppUserRoleInvitationLink](New-AzStaticWebAppUserRoleInvitationLink.md) -Description for Creates an invitation link for a user with the role +Description for create an invitation link for a user with the role ### [New-AzWebApp](New-AzWebApp.md) Creates an Azure Web App. @@ -327,10 +327,10 @@ Description for Detach the user provided function app from the static site build Description for Detach the user provided function app from the static site ### [Update-AzStaticWebApp](Update-AzStaticWebApp.md) -Description for Creates a new static site in an existing resource group, or updates an existing static site. +Description for update a new static site in an existing resource group, or update an existing static site. ### [Update-AzStaticWebAppUser](Update-AzStaticWebAppUser.md) -Description for Updates a user entry with the listed roles +Description for update a user entry with the listed roles ### [Update-AzWebAppAccessRestrictionConfig](Update-AzWebAppAccessRestrictionConfig.md) Updates the inheritance of Main site Access Restriction config to SCM Site for an Azure Web App. diff --git a/src/Websites/Websites/help/Get-AzStaticWebApp.md b/src/Websites/Websites/help/Get-AzStaticWebApp.md index 4c58bb9513e1..603afd210440 100644 --- a/src/Websites/Websites/help/Get-AzStaticWebApp.md +++ b/src/Websites/Websites/help/Get-AzStaticWebApp.md @@ -115,7 +115,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -185,7 +184,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteArmResource ## NOTES diff --git a/src/Websites/Websites/help/Get-AzStaticWebAppBuild.md b/src/Websites/Websites/help/Get-AzStaticWebAppBuild.md index 2ea8403cc641..5e9ab55b195f 100644 --- a/src/Websites/Websites/help/Get-AzStaticWebAppBuild.md +++ b/src/Websites/Websites/help/Get-AzStaticWebAppBuild.md @@ -18,6 +18,12 @@ Get-AzStaticWebAppBuild -Name -ResourceGroupName [-Subscriptio [-DefaultProfile ] [] ``` +### GetViaIdentityStaticSite +``` +Get-AzStaticWebAppBuild -EnvironmentName -StaticSiteInputObject + [-DefaultProfile ] [] +``` + ### Get ``` Get-AzStaticWebAppBuild -EnvironmentName -Name -ResourceGroupName @@ -99,7 +105,7 @@ The stage site identifier. ```yaml Type: System.String -Parameter Sets: Get +Parameter Sets: GetViaIdentityStaticSite, Get Aliases: Required: True @@ -111,7 +117,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -155,6 +160,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -181,7 +201,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteBuildArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteBuildArmResource ## NOTES diff --git a/src/Websites/Websites/help/Get-AzStaticWebAppBuildAppSetting.md b/src/Websites/Websites/help/Get-AzStaticWebAppBuildAppSetting.md index 4ad5f7baa1bb..9c752bfc75b5 100644 --- a/src/Websites/Websites/help/Get-AzStaticWebAppBuildAppSetting.md +++ b/src/Websites/Websites/help/Get-AzStaticWebAppBuildAppSetting.md @@ -154,7 +154,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringDictionary ## NOTES diff --git a/src/Websites/Websites/help/Get-AzStaticWebAppBuildFunction.md b/src/Websites/Websites/help/Get-AzStaticWebAppBuildFunction.md index 9631d675f3b4..06f1698354d0 100644 --- a/src/Websites/Websites/help/Get-AzStaticWebAppBuildFunction.md +++ b/src/Websites/Websites/help/Get-AzStaticWebAppBuildFunction.md @@ -123,7 +123,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteFunctionOverviewArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteFunctionOverviewArmResource ## NOTES diff --git a/src/Websites/Websites/help/Get-AzStaticWebAppBuildFunctionAppSetting.md b/src/Websites/Websites/help/Get-AzStaticWebAppBuildFunctionAppSetting.md index ecdf071a0af2..0ef2f0b9ca06 100644 --- a/src/Websites/Websites/help/Get-AzStaticWebAppBuildFunctionAppSetting.md +++ b/src/Websites/Websites/help/Get-AzStaticWebAppBuildFunctionAppSetting.md @@ -154,7 +154,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringDictionary ## NOTES diff --git a/src/Websites/Websites/help/Get-AzStaticWebAppConfiguredRole.md b/src/Websites/Websites/help/Get-AzStaticWebAppConfiguredRole.md index 2f3ba6c1c816..f8cc64e16bc2 100644 --- a/src/Websites/Websites/help/Get-AzStaticWebAppConfiguredRole.md +++ b/src/Websites/Websites/help/Get-AzStaticWebAppConfiguredRole.md @@ -138,7 +138,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringList +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringList ## NOTES diff --git a/src/Websites/Websites/help/Get-AzStaticWebAppCustomDomain.md b/src/Websites/Websites/help/Get-AzStaticWebAppCustomDomain.md index 661e48ad7569..cbfde504f78f 100644 --- a/src/Websites/Websites/help/Get-AzStaticWebAppCustomDomain.md +++ b/src/Websites/Websites/help/Get-AzStaticWebAppCustomDomain.md @@ -18,6 +18,12 @@ Get-AzStaticWebAppCustomDomain -Name -ResourceGroupName [-Subs [-DefaultProfile ] [] ``` +### GetViaIdentityStaticSite +``` +Get-AzStaticWebAppCustomDomain -DomainName -StaticSiteInputObject + [-DefaultProfile ] [] +``` + ### Get ``` Get-AzStaticWebAppCustomDomain -DomainName -Name -ResourceGroupName @@ -98,7 +104,7 @@ The custom domain name. ```yaml Type: System.String -Parameter Sets: Get +Parameter Sets: GetViaIdentityStaticSite, Get Aliases: Required: True @@ -110,7 +116,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -154,6 +159,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -180,7 +200,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteCustomDomainOverviewArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteCustomDomainOverviewArmResource ## NOTES diff --git a/src/Websites/Websites/help/Get-AzStaticWebAppFunction.md b/src/Websites/Websites/help/Get-AzStaticWebAppFunction.md index dbff0108428c..ec956650fe6a 100644 --- a/src/Websites/Websites/help/Get-AzStaticWebAppFunction.md +++ b/src/Websites/Websites/help/Get-AzStaticWebAppFunction.md @@ -101,7 +101,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteFunctionOverviewArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteFunctionOverviewArmResource ## NOTES diff --git a/src/Websites/Websites/help/Get-AzStaticWebAppFunctionAppSetting.md b/src/Websites/Websites/help/Get-AzStaticWebAppFunctionAppSetting.md index 180fd9c87b24..0403e9890d1a 100644 --- a/src/Websites/Websites/help/Get-AzStaticWebAppFunctionAppSetting.md +++ b/src/Websites/Websites/help/Get-AzStaticWebAppFunctionAppSetting.md @@ -138,7 +138,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringDictionary ## NOTES diff --git a/src/Websites/Websites/help/Get-AzStaticWebAppSecret.md b/src/Websites/Websites/help/Get-AzStaticWebAppSecret.md index 255ab9b05bf8..e0ee5d363069 100644 --- a/src/Websites/Websites/help/Get-AzStaticWebAppSecret.md +++ b/src/Websites/Websites/help/Get-AzStaticWebAppSecret.md @@ -138,7 +138,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringDictionary ## NOTES diff --git a/src/Websites/Websites/help/Get-AzStaticWebAppSetting.md b/src/Websites/Websites/help/Get-AzStaticWebAppSetting.md index 2aae7c862a52..81fd8233f5f7 100644 --- a/src/Websites/Websites/help/Get-AzStaticWebAppSetting.md +++ b/src/Websites/Websites/help/Get-AzStaticWebAppSetting.md @@ -138,7 +138,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringDictionary ## NOTES diff --git a/src/Websites/Websites/help/Get-AzStaticWebAppUser.md b/src/Websites/Websites/help/Get-AzStaticWebAppUser.md index aa991c944814..5b0cde8fb713 100644 --- a/src/Websites/Websites/help/Get-AzStaticWebAppUser.md +++ b/src/Websites/Websites/help/Get-AzStaticWebAppUser.md @@ -154,7 +154,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteUserArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserArmResource ## NOTES diff --git a/src/Websites/Websites/help/Get-AzStaticWebAppUserProvidedFunctionApp.md b/src/Websites/Websites/help/Get-AzStaticWebAppUserProvidedFunctionApp.md index 02ca78740246..570100aa96af 100644 --- a/src/Websites/Websites/help/Get-AzStaticWebAppUserProvidedFunctionApp.md +++ b/src/Websites/Websites/help/Get-AzStaticWebAppUserProvidedFunctionApp.md @@ -26,6 +26,13 @@ Get-AzStaticWebAppUserProvidedFunctionApp -EnvironmentName -Name ] ``` +### GetViaIdentityStaticSite +``` +Get-AzStaticWebAppUserProvidedFunctionApp -EnvironmentName -FunctionAppName + -StaticSiteInputObject [-DefaultProfile ] + [] +``` + ### Get ``` Get-AzStaticWebAppUserProvidedFunctionApp -EnvironmentName -FunctionAppName -Name @@ -40,6 +47,12 @@ Get-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName -Name ] ``` +### GetViaIdentityBuild +``` +Get-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName -BuildInputObject + [-DefaultProfile ] [] +``` + ### GetViaIdentity ``` Get-AzStaticWebAppUserProvidedFunctionApp -InputObject [-DefaultProfile ] @@ -118,6 +131,21 @@ This command gets the details of the user provided function app registered with ## PARAMETERS +### -BuildInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityBuild +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -139,7 +167,7 @@ The stage site identifier. ```yaml Type: System.String -Parameter Sets: List, Get +Parameter Sets: List, GetViaIdentityStaticSite, Get Aliases: Required: True @@ -154,7 +182,7 @@ Name of the function app registered with the static site build. ```yaml Type: System.String -Parameter Sets: Get, List2 +Parameter Sets: GetViaIdentityStaticSite, Get, List2, GetViaIdentityBuild Aliases: Required: True @@ -166,7 +194,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -210,6 +237,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -236,7 +278,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteUserProvidedFunctionAppArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionAppArmResource ## NOTES diff --git a/src/Websites/Websites/help/Get-AzWebAppContinuousWebJob.md b/src/Websites/Websites/help/Get-AzWebAppContinuousWebJob.md index 172921671c4a..f0cba7e39fd0 100644 --- a/src/Websites/Websites/help/Get-AzWebAppContinuousWebJob.md +++ b/src/Websites/Websites/help/Get-AzWebAppContinuousWebJob.md @@ -21,13 +21,19 @@ Get-AzWebAppContinuousWebJob -AppName -ResourceGroupName [-Sub ### Get ``` Get-AzWebAppContinuousWebJob -AppName -Name -ResourceGroupName - [-SubscriptionId ] [-DefaultProfile ] [-PassThru] + [-SubscriptionId ] [-DefaultProfile ] + [] +``` + +### GetViaIdentitySite +``` +Get-AzWebAppContinuousWebJob -Name -SiteInputObject [-DefaultProfile ] [] ``` ### GetViaIdentity ``` -Get-AzWebAppContinuousWebJob -InputObject [-DefaultProfile ] [-PassThru] +Get-AzWebAppContinuousWebJob -InputObject [-DefaultProfile ] [] ``` @@ -113,7 +119,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -132,7 +137,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Get +Parameter Sets: Get, GetViaIdentitySite Aliases: Required: True @@ -142,33 +147,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -PassThru -Returns true when the command succeeds +### -ResourceGroupName +Name of the resource group to which the resource belongs. ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: Get, GetViaIdentity +Type: System.String +Parameter Sets: List, Get Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceGroupName -Name of the resource group to which the resource belongs. +### -SiteInputObject +Identity Parameter ```yaml -Type: System.String -Parameter Sets: List, Get +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentitySite Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -198,7 +203,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.IContinuousWebJob +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IContinuousWebJob ## NOTES diff --git a/src/Websites/Websites/help/Get-AzWebAppSlotContinuousWebJob.md b/src/Websites/Websites/help/Get-AzWebAppSlotContinuousWebJob.md index a1aa5602cfda..d21c48c0db39 100644 --- a/src/Websites/Websites/help/Get-AzWebAppSlotContinuousWebJob.md +++ b/src/Websites/Websites/help/Get-AzWebAppSlotContinuousWebJob.md @@ -22,13 +22,25 @@ Get-AzWebAppSlotContinuousWebJob -AppName -ResourceGroupName - ### Get ``` Get-AzWebAppSlotContinuousWebJob -AppName -Name -ResourceGroupName - -SlotName [-SubscriptionId ] [-DefaultProfile ] [-PassThru] + -SlotName [-SubscriptionId ] [-DefaultProfile ] [] ``` +### GetViaIdentitySite +``` +Get-AzWebAppSlotContinuousWebJob -Name -SlotName -SiteInputObject + [-DefaultProfile ] [] +``` + +### GetViaIdentityContinuouswebjob +``` +Get-AzWebAppSlotContinuousWebJob -SlotName -ContinuouswebjobInputObject + [-DefaultProfile ] [] +``` + ### GetViaIdentity ``` -Get-AzWebAppSlotContinuousWebJob -InputObject [-DefaultProfile ] [-PassThru] +Get-AzWebAppSlotContinuousWebJob -InputObject [-DefaultProfile ] [] ``` @@ -96,6 +108,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ContinuouswebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityContinuouswebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -114,7 +141,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -133,7 +159,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Get +Parameter Sets: Get, GetViaIdentitySite Aliases: Required: True @@ -143,33 +169,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -PassThru -Returns true when the command succeeds +### -ResourceGroupName +Name of the resource group to which the resource belongs. ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: Get, GetViaIdentity +Type: System.String +Parameter Sets: List, Get Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceGroupName -Name of the resource group to which the resource belongs. +### -SiteInputObject +Identity Parameter ```yaml -Type: System.String -Parameter Sets: List, Get +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentitySite Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -179,7 +205,7 @@ If a slot is not specified, the API deletes a deployment for the production slot ```yaml Type: System.String -Parameter Sets: List, Get +Parameter Sets: List, Get, GetViaIdentitySite, GetViaIdentityContinuouswebjob Aliases: Required: True @@ -215,7 +241,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.IContinuousWebJob +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IContinuousWebJob ## NOTES diff --git a/src/Websites/Websites/help/Get-AzWebAppSlotTriggeredWebJob.md b/src/Websites/Websites/help/Get-AzWebAppSlotTriggeredWebJob.md index 9abfe2f3b07e..9ab0689219de 100644 --- a/src/Websites/Websites/help/Get-AzWebAppSlotTriggeredWebJob.md +++ b/src/Websites/Websites/help/Get-AzWebAppSlotTriggeredWebJob.md @@ -22,13 +22,25 @@ Get-AzWebAppSlotTriggeredWebJob -AppName -ResourceGroupName -S ### Get ``` Get-AzWebAppSlotTriggeredWebJob -AppName -Name -ResourceGroupName -SlotName - [-SubscriptionId ] [-DefaultProfile ] [-PassThru] + [-SubscriptionId ] [-DefaultProfile ] [] ``` +### GetViaIdentitySite +``` +Get-AzWebAppSlotTriggeredWebJob -Name -SlotName -SiteInputObject + [-DefaultProfile ] [] +``` + +### GetViaIdentityTriggeredwebjob +``` +Get-AzWebAppSlotTriggeredWebJob -SlotName -TriggeredwebjobInputObject + [-DefaultProfile ] [] +``` + ### GetViaIdentity ``` -Get-AzWebAppSlotTriggeredWebJob -InputObject [-DefaultProfile ] [-PassThru] +Get-AzWebAppSlotTriggeredWebJob -InputObject [-DefaultProfile ] [] ``` @@ -114,7 +126,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -133,7 +144,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Get +Parameter Sets: Get, GetViaIdentitySite Aliases: Required: True @@ -143,33 +154,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -PassThru -Returns true when the command succeeds +### -ResourceGroupName +Name of the resource group to which the resource belongs. ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: Get, GetViaIdentity +Type: System.String +Parameter Sets: List, Get Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceGroupName -Name of the resource group to which the resource belongs. +### -SiteInputObject +Identity Parameter ```yaml -Type: System.String -Parameter Sets: List, Get +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentitySite Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -179,7 +190,7 @@ If a slot is not specified, the API uses the production slot. ```yaml Type: System.String -Parameter Sets: List, Get +Parameter Sets: List, Get, GetViaIdentitySite, GetViaIdentityTriggeredwebjob Aliases: Required: True @@ -206,6 +217,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -TriggeredwebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityTriggeredwebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). @@ -215,7 +241,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.ITriggeredWebJob +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ITriggeredWebJob ## NOTES diff --git a/src/Websites/Websites/help/Get-AzWebAppSlotTriggeredWebJobHistory.md b/src/Websites/Websites/help/Get-AzWebAppSlotTriggeredWebJobHistory.md index f0c83f54443f..4208534cfee0 100644 --- a/src/Websites/Websites/help/Get-AzWebAppSlotTriggeredWebJobHistory.md +++ b/src/Websites/Websites/help/Get-AzWebAppSlotTriggeredWebJobHistory.md @@ -15,7 +15,7 @@ Get or list triggered web job's history for a deployment slot. ### List (Default) ``` Get-AzWebAppSlotTriggeredWebJobHistory -AppName -Name -ResourceGroupName - -SlotName [-SubscriptionId ] [-DefaultProfile ] [-PassThru] + -SlotName [-SubscriptionId ] [-DefaultProfile ] [] ``` @@ -23,13 +23,33 @@ Get-AzWebAppSlotTriggeredWebJobHistory -AppName -Name -Resourc ``` Get-AzWebAppSlotTriggeredWebJobHistory -AppName -Id -Name -ResourceGroupName -SlotName [-SubscriptionId ] [-DefaultProfile ] - [-PassThru] [] + [] +``` + +### GetViaIdentityTriggeredwebjob +``` +Get-AzWebAppSlotTriggeredWebJobHistory -Id -SlotName + -TriggeredwebjobInputObject [-DefaultProfile ] + [] +``` + +### GetViaIdentitySite +``` +Get-AzWebAppSlotTriggeredWebJobHistory -Id -Name -SlotName + -SiteInputObject [-DefaultProfile ] + [] +``` + +### GetViaIdentityHistory +``` +Get-AzWebAppSlotTriggeredWebJobHistory -SlotName -HistoryInputObject + [-DefaultProfile ] [] ``` ### GetViaIdentity ``` Get-AzWebAppSlotTriggeredWebJobHistory -InputObject [-DefaultProfile ] - [-PassThru] [] + [] ``` ## DESCRIPTION @@ -110,12 +130,27 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HistoryInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityHistory +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -Id History ID. ```yaml Type: System.String -Parameter Sets: Get +Parameter Sets: Get, GetViaIdentityTriggeredwebjob, GetViaIdentitySite Aliases: Required: True @@ -127,7 +162,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -146,7 +180,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: List, Get +Parameter Sets: List, Get, GetViaIdentitySite Aliases: Required: True @@ -156,33 +190,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -PassThru -Returns true when the command succeeds +### -ResourceGroupName +Name of the resource group to which the resource belongs. ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Type: System.String +Parameter Sets: List, Get Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceGroupName -Name of the resource group to which the resource belongs. +### -SiteInputObject +Identity Parameter ```yaml -Type: System.String -Parameter Sets: List, Get +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentitySite Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -192,7 +226,7 @@ If a slot is not specified, the API uses the production slot. ```yaml Type: System.String -Parameter Sets: List, Get +Parameter Sets: List, Get, GetViaIdentityTriggeredwebjob, GetViaIdentitySite, GetViaIdentityHistory Aliases: Required: True @@ -219,6 +253,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -TriggeredwebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityTriggeredwebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). @@ -228,7 +277,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.ITriggeredJobHistory +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ITriggeredJobHistory ## NOTES diff --git a/src/Websites/Websites/help/Get-AzWebAppSlotWebJob.md b/src/Websites/Websites/help/Get-AzWebAppSlotWebJob.md index fa75763474ae..43b88f52b5ef 100644 --- a/src/Websites/Websites/help/Get-AzWebAppSlotWebJob.md +++ b/src/Websites/Websites/help/Get-AzWebAppSlotWebJob.md @@ -127,7 +127,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.IWebJob +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebJob ## NOTES diff --git a/src/Websites/Websites/help/Get-AzWebAppTriggeredWebJob.md b/src/Websites/Websites/help/Get-AzWebAppTriggeredWebJob.md index 340f5067e2a0..d3b0684fce51 100644 --- a/src/Websites/Websites/help/Get-AzWebAppTriggeredWebJob.md +++ b/src/Websites/Websites/help/Get-AzWebAppTriggeredWebJob.md @@ -21,13 +21,19 @@ Get-AzWebAppTriggeredWebJob -AppName -ResourceGroupName [-Subs ### Get ``` Get-AzWebAppTriggeredWebJob -AppName -Name -ResourceGroupName - [-SubscriptionId ] [-DefaultProfile ] [-PassThru] + [-SubscriptionId ] [-DefaultProfile ] + [] +``` + +### GetViaIdentitySite +``` +Get-AzWebAppTriggeredWebJob -Name -SiteInputObject [-DefaultProfile ] [] ``` ### GetViaIdentity ``` -Get-AzWebAppTriggeredWebJob -InputObject [-DefaultProfile ] [-PassThru] +Get-AzWebAppTriggeredWebJob -InputObject [-DefaultProfile ] [] ``` @@ -113,7 +119,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -132,7 +137,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Get +Parameter Sets: Get, GetViaIdentitySite Aliases: Required: True @@ -142,33 +147,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -PassThru -Returns true when the command succeeds +### -ResourceGroupName +Name of the resource group to which the resource belongs. ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: Get, GetViaIdentity +Type: System.String +Parameter Sets: List, Get Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceGroupName -Name of the resource group to which the resource belongs. +### -SiteInputObject +Identity Parameter ```yaml -Type: System.String -Parameter Sets: List, Get +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentitySite Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -198,7 +203,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.ITriggeredWebJob +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ITriggeredWebJob ## NOTES diff --git a/src/Websites/Websites/help/Get-AzWebAppTriggeredWebJobHistory.md b/src/Websites/Websites/help/Get-AzWebAppTriggeredWebJobHistory.md index 2986ba38e67a..ace775b3ecad 100644 --- a/src/Websites/Websites/help/Get-AzWebAppTriggeredWebJobHistory.md +++ b/src/Websites/Websites/help/Get-AzWebAppTriggeredWebJobHistory.md @@ -15,20 +15,32 @@ Get or list triggered web job's history for an app. ### List (Default) ``` Get-AzWebAppTriggeredWebJobHistory -AppName -Name -ResourceGroupName - [-SubscriptionId ] [-DefaultProfile ] [-PassThru] + [-SubscriptionId ] [-DefaultProfile ] [] ``` ### Get ``` Get-AzWebAppTriggeredWebJobHistory -AppName -Id -Name -ResourceGroupName - [-SubscriptionId ] [-DefaultProfile ] [-PassThru] + [-SubscriptionId ] [-DefaultProfile ] [] ``` +### GetViaIdentityTriggeredwebjob +``` +Get-AzWebAppTriggeredWebJobHistory -Id -TriggeredwebjobInputObject + [-DefaultProfile ] [] +``` + +### GetViaIdentitySite +``` +Get-AzWebAppTriggeredWebJobHistory -Id -Name -SiteInputObject + [-DefaultProfile ] [] +``` + ### GetViaIdentity ``` -Get-AzWebAppTriggeredWebJobHistory -InputObject [-DefaultProfile ] [-PassThru] +Get-AzWebAppTriggeredWebJobHistory -InputObject [-DefaultProfile ] [] ``` @@ -116,7 +128,7 @@ History ID. ```yaml Type: System.String -Parameter Sets: Get +Parameter Sets: Get, GetViaIdentityTriggeredwebjob, GetViaIdentitySite Aliases: Required: True @@ -128,7 +140,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -147,7 +158,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: List, Get +Parameter Sets: List, Get, GetViaIdentitySite Aliases: Required: True @@ -157,33 +168,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -PassThru -Returns true when the command succeeds +### -ResourceGroupName +Name of the resource group to which the resource belongs. ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Type: System.String +Parameter Sets: List, Get Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -ResourceGroupName -Name of the resource group to which the resource belongs. +### -SiteInputObject +Identity Parameter ```yaml -Type: System.String -Parameter Sets: List, Get +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentitySite Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -204,6 +215,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -TriggeredwebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: GetViaIdentityTriggeredwebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). @@ -213,7 +239,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.ITriggeredJobHistory +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ITriggeredJobHistory ## NOTES diff --git a/src/Websites/Websites/help/Get-AzWebAppWebJob.md b/src/Websites/Websites/help/Get-AzWebAppWebJob.md index c0c91f74257f..4f1652c66b61 100644 --- a/src/Websites/Websites/help/Get-AzWebAppWebJob.md +++ b/src/Websites/Websites/help/Get-AzWebAppWebJob.md @@ -110,7 +110,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.IWebJob +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebJob ## NOTES diff --git a/src/Websites/Websites/help/New-AzStaticWebApp.md b/src/Websites/Websites/help/New-AzStaticWebApp.md index 041fabe38292..8ad69961f612 100644 --- a/src/Websites/Websites/help/New-AzStaticWebApp.md +++ b/src/Websites/Websites/help/New-AzStaticWebApp.md @@ -8,25 +8,58 @@ schema: 2.0.0 # New-AzStaticWebApp ## SYNOPSIS -Description for Creates a new static site in an existing resource group, or updates an existing static site. +Description for create a new static site in an existing resource group, or create an existing static site. ## SYNTAX +### CreateExpanded (Default) ``` New-AzStaticWebApp -Name -ResourceGroupName [-SubscriptionId ] -Location [-AllowConfigFileUpdate] [-ApiBuildCommand ] [-ApiLocation ] [-AppArtifactLocation ] [-AppBuildCommand ] [-AppLocation ] [-Branch ] [-Capacity ] - [-GithubActionSecretNameOverride ] [-IdentityType ] - [-IdentityUserAssignedIdentity ] [-Kind ] [-OutputLocation ] - [-RepositoryToken ] [-RepositoryUrl ] [-SkipGithubActionWorkflowGeneration] - [-SkuName ] [-StagingEnvironmentPolicy ] [-Tag ] - [-ForkRepositoryDescription ] [-ForkRepositoryIsPrivate] [-ForkRepositoryOwner ] - [-ForkRepositoryName ] [-TemplateRepositoryUrl ] [-DefaultProfile ] [-AsJob] + [-EnableSystemAssignedIdentity] [-ForkRepositoryDescription ] [-ForkRepositoryIsPrivate] + [-ForkRepositoryName ] [-ForkRepositoryOwner ] [-GithubActionSecretNameOverride ] + [-Kind ] [-OutputLocation ] [-RepositoryToken ] [-RepositoryUrl ] + [-SkipGithubActionWorkflowGeneration] [-SkuCapability ] [-SkuCapacityDefault ] + [-SkuCapacityElasticMaximum ] [-SkuCapacityMaximum ] [-SkuCapacityMinimum ] + [-SkuCapacityScaleType ] [-SkuFamily ] [-SkuLocation ] [-SkuName ] + [-SkuSize ] [-SkuTier ] [-StagingEnvironmentPolicy ] [-Tag ] + [-TemplateRepositoryUrl ] [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] + [-NoWait] [-WhatIf] [-Confirm] [] +``` + +### CreateViaJsonFilePath +``` +New-AzStaticWebApp -Name -ResourceGroupName [-SubscriptionId ] -JsonFilePath + [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] +``` + +### CreateViaJsonString +``` +New-AzStaticWebApp -Name -ResourceGroupName [-SubscriptionId ] -JsonString + [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] +``` + +### CreateViaIdentityExpanded +``` +New-AzStaticWebApp -InputObject -Location [-AllowConfigFileUpdate] + [-ApiBuildCommand ] [-ApiLocation ] [-AppArtifactLocation ] + [-AppBuildCommand ] [-AppLocation ] [-Branch ] [-Capacity ] + [-EnableSystemAssignedIdentity] [-ForkRepositoryDescription ] [-ForkRepositoryIsPrivate] + [-ForkRepositoryName ] [-ForkRepositoryOwner ] [-GithubActionSecretNameOverride ] + [-Kind ] [-OutputLocation ] [-RepositoryToken ] [-RepositoryUrl ] + [-SkipGithubActionWorkflowGeneration] [-SkuCapability ] [-SkuCapacityDefault ] + [-SkuCapacityElasticMaximum ] [-SkuCapacityMaximum ] [-SkuCapacityMinimum ] + [-SkuCapacityScaleType ] [-SkuFamily ] [-SkuLocation ] [-SkuName ] + [-SkuSize ] [-SkuTier ] [-StagingEnvironmentPolicy ] [-Tag ] + [-TemplateRepositoryUrl ] [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -Description for Creates a new static site in an existing resource group, or updates an existing static site. +Description for create a new static site in an existing resource group, or create an existing static site. ## EXAMPLES @@ -63,7 +96,7 @@ This command creates a new static site in an existing resource group, or updates ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -78,7 +111,7 @@ A custom command to run during deployment of the Azure Functions API application ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -93,7 +126,7 @@ The path to the api code within the repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -108,7 +141,7 @@ Deprecated: The path of the app artifacts after building (deprecated in favor of ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -123,7 +156,7 @@ A custom command to run during deployment of the static content application. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -138,7 +171,7 @@ The path to the app code within the repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -168,7 +201,7 @@ The target branch in the repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -183,7 +216,7 @@ Current number of instances assigned to the resource. ```yaml Type: System.Int32 -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -194,7 +227,8 @@ Accept wildcard characters: False ``` ### -DefaultProfile -The credentials, account, tenant, and subscription used for communication with Azure. +The DefaultProfile parameter is not functional. +Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. ```yaml Type: System.Management.Automation.PSObject @@ -208,12 +242,27 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableSystemAssignedIdentity +Determines whether to enable a system-assigned identity for the resource. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ForkRepositoryDescription Description of the newly generated repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -230,7 +279,7 @@ public). ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -245,7 +294,7 @@ Name of the newly generated repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -260,7 +309,7 @@ Owner of the newly generated repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -275,7 +324,7 @@ Github Action secret name override. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -285,31 +334,45 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -IdentityType -Type of managed service identity. +### -InputObject +Identity Parameter ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.ManagedServiceIdentityType -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: CreateViaIdentityExpanded Aliases: -Required: False +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -### -IdentityUserAssignedIdentity -The list of user assigned identities associated with the resource. -The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName} +### -JsonString +Json string supplied to the Create operation ```yaml -Type: System.Collections.Hashtable -Parameter Sets: (All) +Type: System.String +Parameter Sets: CreateViaJsonString Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False @@ -321,7 +384,7 @@ Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -336,7 +399,7 @@ Resource Location. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: True @@ -351,7 +414,7 @@ Name of the static site to create or update. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -381,7 +444,7 @@ The output path of the app after building. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -397,7 +460,7 @@ This is used to setup the Github Actions workflow file and API secrets. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -412,7 +475,7 @@ URL for the repository of the static site. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -427,7 +490,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -442,7 +505,127 @@ Skip Github Action workflow generation. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuCapability +Capabilities of the SKU, e.g., is traffic manager enabled? + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ICapability[] +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuCapacityDefault +Default number of workers for this App Service plan SKU. + +```yaml +Type: System.Int32 +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuCapacityElasticMaximum +Maximum number of Elastic workers for this App Service plan SKU. + +```yaml +Type: System.Int32 +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuCapacityMaximum +Maximum number of workers for this App Service plan SKU. + +```yaml +Type: System.Int32 +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuCapacityMinimum +Minimum number of workers for this App Service plan SKU. + +```yaml +Type: System.Int32 +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuCapacityScaleType +Available scale configurations for an App Service plan. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuFamily +Family code of the resource SKU. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuLocation +Locations of the SKU. + +```yaml +Type: System.String[] +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -457,7 +640,37 @@ Name of the resource SKU. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuSize +Size specifier of the resource SKU. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkuTier +Service tier of the resource SKU. + +```yaml +Type: System.String +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -471,8 +684,8 @@ Accept wildcard characters: False State indicating whether staging environments are allowed or not allowed for a static web app. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.StagingEnvironmentPolicy -Parameter Sets: (All) +Type: System.String +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -489,7 +702,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: False @@ -504,7 +717,7 @@ Resource tags. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -520,7 +733,23 @@ The newly generated repository will be based on this one. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UserAssignedIdentity +The array of user assigned identities associated with the resource. +The elements in array will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}.' + +```yaml +Type: System.String[] +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -566,9 +795,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity + ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteArmResource ## NOTES diff --git a/src/Websites/Websites/help/New-AzStaticWebAppBuildAppSetting.md b/src/Websites/Websites/help/New-AzStaticWebAppBuildAppSetting.md index 7cfb3f1bec34..6f8af86017f0 100644 --- a/src/Websites/Websites/help/New-AzStaticWebAppBuildAppSetting.md +++ b/src/Websites/Websites/help/New-AzStaticWebAppBuildAppSetting.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzStaticWebAppBuildAppSetting ## SYNOPSIS -Description for Creates or updates the app settings of a static site build. +Description for create the app settings of a static site build. ## SYNTAX @@ -19,6 +19,27 @@ New-AzStaticWebAppBuildAppSetting -EnvironmentName -Name -Reso [-WhatIf] [-Confirm] [] ``` +### CreateViaJsonString +``` +New-AzStaticWebAppBuildAppSetting -EnvironmentName -Name -ResourceGroupName + [-SubscriptionId ] -JsonString [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### CreateViaJsonFilePath +``` +New-AzStaticWebAppBuildAppSetting -EnvironmentName -Name -ResourceGroupName + [-SubscriptionId ] -JsonFilePath [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### CreateViaIdentityStaticSiteExpanded +``` +New-AzStaticWebAppBuildAppSetting -EnvironmentName -StaticSiteInputObject + [-AppSetting ] [-Kind ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + ### CreateViaIdentityExpanded ``` New-AzStaticWebAppBuildAppSetting -InputObject [-AppSetting ] [-Kind ] @@ -26,7 +47,7 @@ New-AzStaticWebAppBuildAppSetting -InputObject [-AppSetting ``` ## DESCRIPTION -Description for Creates or updates the app settings of a static site build. +Description for create the app settings of a static site build. ## EXAMPLES @@ -45,7 +66,7 @@ This command creates or updates the app settings of a static site build. ### Example 2: Create or updates the app settings of a static site build by pipeline ```powershell -Get-AzStaticWebAppBuildAppSetting -ResourceGroupName resourceGroup -Name staticweb00 -EnvironmentName 'default' | New-AzStaticWebAppBuildAppSetting -AppSetting @{'buildsetting1' = 'someval'; 'buildsetting2' = 'someval2' } +Get-AzStaticWebAppBuildAppSetting -ResourceGroupName resourceGroup -Name taticweb00 -EnvironmentName 'default' | New-AzStaticWebAppBuildAppSetting -AppSetting @{'buildsetting1' = 'someval'; 'buildsetting2' = 'someval2' } ``` ```output @@ -63,7 +84,7 @@ Settings. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityStaticSiteExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -94,7 +115,7 @@ The stage site identifier. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath, CreateViaIdentityStaticSiteExpanded Aliases: Required: True @@ -106,7 +127,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -120,12 +140,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityStaticSiteExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -140,7 +190,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: True @@ -155,7 +205,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: True @@ -165,6 +215,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: CreateViaIdentityStaticSiteExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -172,7 +237,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: False @@ -222,7 +287,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringDictionary ## NOTES diff --git a/src/Websites/Websites/help/New-AzStaticWebAppBuildFunctionAppSetting.md b/src/Websites/Websites/help/New-AzStaticWebAppBuildFunctionAppSetting.md index b666bad2f8c6..04e9681cebd1 100644 --- a/src/Websites/Websites/help/New-AzStaticWebAppBuildFunctionAppSetting.md +++ b/src/Websites/Websites/help/New-AzStaticWebAppBuildFunctionAppSetting.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzStaticWebAppBuildFunctionAppSetting ## SYNOPSIS -Description for Creates or updates the function app settings of a static site build. +Description for create the function app settings of a static site build. ## SYNTAX @@ -19,6 +19,27 @@ New-AzStaticWebAppBuildFunctionAppSetting -EnvironmentName -Name ] ``` +### CreateViaJsonString +``` +New-AzStaticWebAppBuildFunctionAppSetting -EnvironmentName -Name -ResourceGroupName + [-SubscriptionId ] -JsonString [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### CreateViaJsonFilePath +``` +New-AzStaticWebAppBuildFunctionAppSetting -EnvironmentName -Name -ResourceGroupName + [-SubscriptionId ] -JsonFilePath [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### CreateViaIdentityStaticSiteExpanded +``` +New-AzStaticWebAppBuildFunctionAppSetting -EnvironmentName -StaticSiteInputObject + [-AppSetting ] [-Kind ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + ### CreateViaIdentityExpanded ``` New-AzStaticWebAppBuildFunctionAppSetting -InputObject [-AppSetting ] @@ -27,7 +48,7 @@ New-AzStaticWebAppBuildFunctionAppSetting -InputObject [-App ``` ## DESCRIPTION -Description for Creates or updates the function app settings of a static site build. +Description for create the function app settings of a static site build. ## EXAMPLES @@ -64,7 +85,7 @@ Settings. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityStaticSiteExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -95,7 +116,7 @@ The stage site identifier. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath, CreateViaIdentityStaticSiteExpanded Aliases: Required: True @@ -107,7 +128,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -121,12 +141,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityStaticSiteExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -141,7 +191,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: True @@ -156,7 +206,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: True @@ -166,6 +216,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: CreateViaIdentityStaticSiteExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -173,7 +238,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: False @@ -223,7 +288,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringDictionary ## NOTES diff --git a/src/Websites/Websites/help/New-AzStaticWebAppCustomDomain.md b/src/Websites/Websites/help/New-AzStaticWebAppCustomDomain.md index 238e224ac974..793f0024e805 100644 --- a/src/Websites/Websites/help/New-AzStaticWebAppCustomDomain.md +++ b/src/Websites/Websites/help/New-AzStaticWebAppCustomDomain.md @@ -8,18 +8,40 @@ schema: 2.0.0 # New-AzStaticWebAppCustomDomain ## SYNOPSIS -Description for Creates a new static site custom domain in an existing resource group and static site. +Description for create a new static site custom domain in an existing resource group and static site. ## SYNTAX +### CreateExpanded (Default) ``` New-AzStaticWebAppCustomDomain -DomainName -Name -ResourceGroupName [-SubscriptionId ] [-Kind ] [-ValidationMethod ] [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] [] ``` +### CreateViaJsonString +``` +New-AzStaticWebAppCustomDomain -DomainName -Name -ResourceGroupName + [-SubscriptionId ] -JsonString [-DefaultProfile ] [-AsJob] [-NoWait] + [-WhatIf] [-Confirm] [] +``` + +### CreateViaJsonFilePath +``` +New-AzStaticWebAppCustomDomain -DomainName -Name -ResourceGroupName + [-SubscriptionId ] -JsonFilePath [-DefaultProfile ] [-AsJob] [-NoWait] + [-WhatIf] [-Confirm] [] +``` + +### CreateViaIdentityStaticSiteExpanded +``` +New-AzStaticWebAppCustomDomain -DomainName -StaticSiteInputObject [-Kind ] + [-ValidationMethod ] [-DefaultProfile ] [-AsJob] [-NoWait] + [-WhatIf] [-Confirm] [] +``` + ## DESCRIPTION -Description for Creates a new static site custom domain in an existing resource group and static site. +Description for create a new static site custom domain in an existing resource group and static site. ## EXAMPLES @@ -85,12 +107,42 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityStaticSiteExpanded Aliases: Required: False @@ -105,7 +157,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: True @@ -135,7 +187,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: True @@ -145,6 +197,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: CreateViaIdentityStaticSiteExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -152,7 +219,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: False @@ -167,7 +234,7 @@ Validation method for adding a custom domain ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityStaticSiteExpanded Aliases: Required: False @@ -213,9 +280,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity + ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteCustomDomainOverviewArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteCustomDomainOverviewArmResource ## NOTES diff --git a/src/Websites/Websites/help/New-AzStaticWebAppFunctionAppSetting.md b/src/Websites/Websites/help/New-AzStaticWebAppFunctionAppSetting.md index 25de38bc7ced..769ffd7f164d 100644 --- a/src/Websites/Websites/help/New-AzStaticWebAppFunctionAppSetting.md +++ b/src/Websites/Websites/help/New-AzStaticWebAppFunctionAppSetting.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzStaticWebAppFunctionAppSetting ## SYNOPSIS -Description for Creates or updates the function app settings of a static site. +Description for create the function app settings of a static site. ## SYNTAX @@ -19,6 +19,20 @@ New-AzStaticWebAppFunctionAppSetting -Name -ResourceGroupName [-WhatIf] [-Confirm] [] ``` +### CreateViaJsonString +``` +New-AzStaticWebAppFunctionAppSetting -Name -ResourceGroupName [-SubscriptionId ] + -JsonString [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### CreateViaJsonFilePath +``` +New-AzStaticWebAppFunctionAppSetting -Name -ResourceGroupName [-SubscriptionId ] + -JsonFilePath [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + ### CreateViaIdentityExpanded ``` New-AzStaticWebAppFunctionAppSetting -InputObject [-AppSetting ] @@ -27,7 +41,7 @@ New-AzStaticWebAppFunctionAppSetting -InputObject [-AppSetti ``` ## DESCRIPTION -Description for Creates or updates the function app settings of a static site. +Description for create the function app settings of a static site. ## EXAMPLES @@ -64,7 +78,7 @@ Settings. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -92,7 +106,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -106,12 +119,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -126,7 +169,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: True @@ -141,7 +184,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: True @@ -158,7 +201,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: False @@ -208,7 +251,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStringDictionary ## NOTES diff --git a/src/Websites/Websites/help/New-AzStaticWebAppSetting.md b/src/Websites/Websites/help/New-AzStaticWebAppSetting.md index 7127897d4928..6edd03a6c45b 100644 --- a/src/Websites/Websites/help/New-AzStaticWebAppSetting.md +++ b/src/Websites/Websites/help/New-AzStaticWebAppSetting.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzStaticWebAppSetting ## SYNOPSIS -Description for Creates or updates the app settings of a static site. +Description for create the app settings of a static site. ## SYNTAX @@ -19,6 +19,20 @@ New-AzStaticWebAppSetting -Name -ResourceGroupName [-Subscript [-WhatIf] [-Confirm] [] ``` +### CreateViaJsonString +``` +New-AzStaticWebAppSetting -Name -ResourceGroupName [-SubscriptionId ] + -JsonString [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### CreateViaJsonFilePath +``` +New-AzStaticWebAppSetting -Name -ResourceGroupName [-SubscriptionId ] + -JsonFilePath [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + ### CreateViaIdentityExpanded ``` New-AzStaticWebAppSetting -InputObject [-AppSetting ] [-Kind ] @@ -26,7 +40,7 @@ New-AzStaticWebAppSetting -InputObject [-AppSetting -ResourceGroupName ] ``` +### CreateViaJsonString +``` +New-AzStaticWebAppUserRoleInvitationLink -Name -ResourceGroupName [-SubscriptionId ] + -JsonString [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### CreateViaJsonFilePath +``` +New-AzStaticWebAppUserRoleInvitationLink -Name -ResourceGroupName [-SubscriptionId ] + -JsonFilePath [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + ### CreateViaIdentityExpanded ``` New-AzStaticWebAppUserRoleInvitationLink -InputObject [-Domain ] [-Kind ] @@ -28,7 +42,7 @@ New-AzStaticWebAppUserRoleInvitationLink -InputObject [-Doma ``` ## DESCRIPTION -Description for Creates an invitation link for a user with the role +Description for create an invitation link for a user with the role ## EXAMPLES @@ -76,7 +90,7 @@ The domain name for the static site custom domain. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -88,7 +102,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -102,12 +115,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -122,7 +165,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: True @@ -137,7 +180,7 @@ The number of hours the sas token stays valid ```yaml Type: System.Int32 -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -152,7 +195,7 @@ The identity provider for the static site user. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -167,7 +210,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: True @@ -182,7 +225,7 @@ The roles for the static site user, in free-form string format ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -199,7 +242,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonString, CreateViaJsonFilePath Aliases: Required: False @@ -214,7 +257,7 @@ The user id for the static site user. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -264,7 +307,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteUserInvitationResponseResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserInvitationResponseResource ## NOTES diff --git a/src/Websites/Websites/help/Register-AzStaticWebAppUserProvidedFunctionApp.md b/src/Websites/Websites/help/Register-AzStaticWebAppUserProvidedFunctionApp.md index 0c1ad44cbd12..9950a5384b7b 100644 --- a/src/Websites/Websites/help/Register-AzStaticWebAppUserProvidedFunctionApp.md +++ b/src/Websites/Websites/help/Register-AzStaticWebAppUserProvidedFunctionApp.md @@ -20,12 +20,94 @@ Register-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName -Name < [-WhatIf] [-Confirm] [] ``` +### RegisterViaJsonString +``` +Register-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName -EnvironmentName + -Name -ResourceGroupName [-SubscriptionId ] [-Forced] -JsonString + [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] +``` + +### RegisterViaJsonFilePath +``` +Register-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName -EnvironmentName + -Name -ResourceGroupName [-SubscriptionId ] [-Forced] -JsonFilePath + [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] +``` + +### RegisterViaIdentityStaticSiteExpanded +``` +Register-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName -EnvironmentName + -StaticSiteInputObject [-Forced] [-FunctionAppRegion ] + [-FunctionAppResourceId ] [-Kind ] [-DefaultProfile ] [-AsJob] [-NoWait] + [-WhatIf] [-Confirm] [] +``` + +### RegisterViaIdentityStaticSite +``` +Register-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName -EnvironmentName + -StaticSiteInputObject [-Forced] + -StaticSiteUserProvidedFunctionEnvelope + [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] +``` + ### RegisterExpanded ``` +Register-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName -EnvironmentName + -Name -ResourceGroupName [-SubscriptionId ] [-Forced] [-FunctionAppRegion ] + [-FunctionAppResourceId ] [-Kind ] [-DefaultProfile ] [-AsJob] [-NoWait] + [-WhatIf] [-Confirm] [] +``` + +### RegisterViaJsonString1 +``` +Register-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName -Name + -ResourceGroupName [-SubscriptionId ] [-Forced] -JsonString + [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] +``` + +### RegisterViaJsonFilePath1 +``` Register-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName -Name - -ResourceGroupName -EnvironmentName [-SubscriptionId ] [-Forced] - [-FunctionAppRegion ] [-FunctionAppResourceId ] [-Kind ] [-DefaultProfile ] - [-AsJob] [-NoWait] [-WhatIf] [-Confirm] [] + -ResourceGroupName [-SubscriptionId ] [-Forced] -JsonFilePath + [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] +``` + +### RegisterViaIdentityBuildExpanded +``` +Register-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName -BuildInputObject + [-Forced] [-FunctionAppRegion ] [-FunctionAppResourceId ] [-Kind ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] +``` + +### RegisterViaIdentityBuild +``` +Register-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName -BuildInputObject + [-Forced] -StaticSiteUserProvidedFunctionEnvelope + [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] +``` + +### RegisterViaIdentityStaticSiteExpanded1 +``` +Register-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName + -StaticSiteInputObject [-Forced] [-FunctionAppRegion ] + [-FunctionAppResourceId ] [-Kind ] [-DefaultProfile ] [-AsJob] [-NoWait] + [-WhatIf] [-Confirm] [] +``` + +### RegisterViaIdentityStaticSite1 +``` +Register-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName + -StaticSite1InputObject [-Forced] + -StaticSiteUserProvidedFunctionEnvelope + [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -78,6 +160,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -BuildInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: RegisterViaIdentityBuildExpanded, RegisterViaIdentityBuild +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -99,7 +196,7 @@ The stage site identifier. ```yaml Type: System.String -Parameter Sets: RegisterExpanded +Parameter Sets: RegisterViaJsonString, RegisterViaJsonFilePath, RegisterViaIdentityStaticSiteExpanded, RegisterViaIdentityStaticSite, RegisterExpanded Aliases: Required: True @@ -145,7 +242,7 @@ The region of the function app registered with the static site ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: RegisterExpanded1, RegisterViaIdentityStaticSiteExpanded, RegisterExpanded, RegisterViaIdentityBuildExpanded, RegisterViaIdentityStaticSiteExpanded1 Aliases: Required: False @@ -160,7 +257,7 @@ The resource id of the function app registered with the static site ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: RegisterExpanded1, RegisterViaIdentityStaticSiteExpanded, RegisterExpanded, RegisterViaIdentityBuildExpanded, RegisterViaIdentityStaticSiteExpanded1 Aliases: Required: False @@ -170,12 +267,42 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Register operation + +```yaml +Type: System.String +Parameter Sets: RegisterViaJsonFilePath, RegisterViaJsonFilePath1 +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Register operation + +```yaml +Type: System.String +Parameter Sets: RegisterViaJsonString, RegisterViaJsonString1 +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: RegisterExpanded1, RegisterViaIdentityStaticSiteExpanded, RegisterExpanded, RegisterViaIdentityBuildExpanded, RegisterViaIdentityStaticSiteExpanded1 Aliases: Required: False @@ -190,7 +317,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: RegisterExpanded1, RegisterViaJsonString, RegisterViaJsonFilePath, RegisterExpanded, RegisterViaJsonString1, RegisterViaJsonFilePath1 Aliases: Required: True @@ -220,7 +347,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: RegisterExpanded1, RegisterViaJsonString, RegisterViaJsonFilePath, RegisterExpanded, RegisterViaJsonString1, RegisterViaJsonFilePath1 Aliases: Required: True @@ -230,6 +357,51 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSite1InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: RegisterViaIdentityStaticSite1 +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: RegisterViaIdentityStaticSiteExpanded, RegisterViaIdentityStaticSite, RegisterViaIdentityStaticSiteExpanded1 +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StaticSiteUserProvidedFunctionEnvelope +Static Site User Provided Function App ARM resource. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionAppArmResource +Parameter Sets: RegisterViaIdentityStaticSite, RegisterViaIdentityBuild, RegisterViaIdentityStaticSite1 +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -237,7 +409,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: RegisterExpanded1, RegisterViaJsonString, RegisterViaJsonFilePath, RegisterExpanded, RegisterViaJsonString1, RegisterViaJsonFilePath1 Aliases: Required: False @@ -283,9 +455,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionAppArmResource + +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity + ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteUserProvidedFunctionAppArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionAppArmResource ## NOTES diff --git a/src/Websites/Websites/help/Remove-AzStaticWebApp.md b/src/Websites/Websites/help/Remove-AzStaticWebApp.md index 20253269db7b..925b4bf4385b 100644 --- a/src/Websites/Websites/help/Remove-AzStaticWebApp.md +++ b/src/Websites/Websites/help/Remove-AzStaticWebApp.md @@ -79,7 +79,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity diff --git a/src/Websites/Websites/help/Remove-AzStaticWebAppAttachedRepository.md b/src/Websites/Websites/help/Remove-AzStaticWebAppAttachedRepository.md index 729f1debf53e..6d3e1d04c8da 100644 --- a/src/Websites/Websites/help/Remove-AzStaticWebAppAttachedRepository.md +++ b/src/Websites/Websites/help/Remove-AzStaticWebAppAttachedRepository.md @@ -72,7 +72,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity diff --git a/src/Websites/Websites/help/Remove-AzStaticWebAppBuild.md b/src/Websites/Websites/help/Remove-AzStaticWebAppBuild.md index 781d4975e984..caf815ed9e1b 100644 --- a/src/Websites/Websites/help/Remove-AzStaticWebAppBuild.md +++ b/src/Websites/Websites/help/Remove-AzStaticWebAppBuild.md @@ -19,6 +19,13 @@ Remove-AzStaticWebAppBuild -EnvironmentName -Name -ResourceGro [-WhatIf] [-Confirm] [] ``` +### DeleteViaIdentityStaticSite +``` +Remove-AzStaticWebAppBuild -EnvironmentName -StaticSiteInputObject + [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-WhatIf] + [-Confirm] [] +``` + ### DeleteViaIdentity ``` Remove-AzStaticWebAppBuild -InputObject [-DefaultProfile ] [-AsJob] [-NoWait] @@ -82,7 +89,7 @@ The stage site identifier. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentityStaticSite Aliases: Required: True @@ -94,7 +101,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -168,6 +174,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites/help/Remove-AzStaticWebAppCustomDomain.md b/src/Websites/Websites/help/Remove-AzStaticWebAppCustomDomain.md index d3aeb181559a..559c9f235209 100644 --- a/src/Websites/Websites/help/Remove-AzStaticWebAppCustomDomain.md +++ b/src/Websites/Websites/help/Remove-AzStaticWebAppCustomDomain.md @@ -19,6 +19,13 @@ Remove-AzStaticWebAppCustomDomain -DomainName -Name -ResourceG [-WhatIf] [-Confirm] [] ``` +### DeleteViaIdentityStaticSite +``` +Remove-AzStaticWebAppCustomDomain -DomainName -StaticSiteInputObject + [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-WhatIf] + [-Confirm] [] +``` + ### DeleteViaIdentity ``` Remove-AzStaticWebAppCustomDomain -InputObject [-DefaultProfile ] [-AsJob] @@ -82,7 +89,7 @@ The custom domain to delete. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentityStaticSite Aliases: Required: True @@ -94,7 +101,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -168,6 +174,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites/help/Remove-AzStaticWebAppUser.md b/src/Websites/Websites/help/Remove-AzStaticWebAppUser.md index 5f5015e6587c..7ef1929d0a53 100644 --- a/src/Websites/Websites/help/Remove-AzStaticWebAppUser.md +++ b/src/Websites/Websites/help/Remove-AzStaticWebAppUser.md @@ -19,6 +19,20 @@ Remove-AzStaticWebAppUser -AuthProvider -Name -ResourceGroupNa [-WhatIf] [-Confirm] [] ``` +### DeleteViaIdentityStaticSite +``` +Remove-AzStaticWebAppUser -AuthProvider -UserId -StaticSiteInputObject + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [] +``` + +### DeleteViaIdentityAuthprovider +``` +Remove-AzStaticWebAppUser -UserId -AuthproviderInputObject + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [] +``` + ### DeleteViaIdentity ``` Remove-AzStaticWebAppUser -InputObject [-DefaultProfile ] [-PassThru] @@ -52,7 +66,7 @@ The auth provider for this user. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentityStaticSite Aliases: Required: True @@ -62,6 +76,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -AuthproviderInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentityAuthprovider +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -80,7 +109,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -139,6 +167,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -161,7 +204,7 @@ The user id of the user. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentityStaticSite, DeleteViaIdentityAuthprovider Aliases: Required: True diff --git a/src/Websites/Websites/help/Remove-AzWebAppContinuousWebJob.md b/src/Websites/Websites/help/Remove-AzWebAppContinuousWebJob.md index f74b1ebe1d2c..9ab73683ac1b 100644 --- a/src/Websites/Websites/help/Remove-AzWebAppContinuousWebJob.md +++ b/src/Websites/Websites/help/Remove-AzWebAppContinuousWebJob.md @@ -19,6 +19,13 @@ Remove-AzWebAppContinuousWebJob -AppName -Name -ResourceGroupN [-WhatIf] [-Confirm] [] ``` +### DeleteViaIdentitySite +``` +Remove-AzWebAppContinuousWebJob -Name -SiteInputObject + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [] +``` + ### DeleteViaIdentity ``` Remove-AzWebAppContinuousWebJob -InputObject [-DefaultProfile ] [-PassThru] @@ -79,7 +86,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -98,7 +104,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentitySite Aliases: Required: True @@ -138,6 +144,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites/help/Remove-AzWebAppSlotContinuousWebJob.md b/src/Websites/Websites/help/Remove-AzWebAppSlotContinuousWebJob.md index 14287d44e512..8f09b15eb8ae 100644 --- a/src/Websites/Websites/help/Remove-AzWebAppSlotContinuousWebJob.md +++ b/src/Websites/Websites/help/Remove-AzWebAppSlotContinuousWebJob.md @@ -19,6 +19,20 @@ Remove-AzWebAppSlotContinuousWebJob -AppName -Name -ResourceGr [-WhatIf] [-Confirm] [] ``` +### DeleteViaIdentitySite +``` +Remove-AzWebAppSlotContinuousWebJob -Name -SlotName -SiteInputObject + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [] +``` + +### DeleteViaIdentityContinuouswebjob +``` +Remove-AzWebAppSlotContinuousWebJob -SlotName -ContinuouswebjobInputObject + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [] +``` + ### DeleteViaIdentity ``` Remove-AzWebAppSlotContinuousWebJob -InputObject [-DefaultProfile ] [-PassThru] @@ -61,6 +75,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ContinuouswebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentityContinuouswebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -79,7 +108,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -98,7 +126,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentitySite Aliases: Required: True @@ -138,13 +166,28 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SlotName Name of the deployment slot. If a slot is not specified, the API deletes a deployment for the production slot. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentitySite, DeleteViaIdentityContinuouswebjob Aliases: Required: True diff --git a/src/Websites/Websites/help/Remove-AzWebAppSlotTriggeredWebJob.md b/src/Websites/Websites/help/Remove-AzWebAppSlotTriggeredWebJob.md index 417ac61ff322..e5ab1f6fcb9c 100644 --- a/src/Websites/Websites/help/Remove-AzWebAppSlotTriggeredWebJob.md +++ b/src/Websites/Websites/help/Remove-AzWebAppSlotTriggeredWebJob.md @@ -19,6 +19,20 @@ Remove-AzWebAppSlotTriggeredWebJob -AppName -Name -ResourceGro [-WhatIf] [-Confirm] [] ``` +### DeleteViaIdentitySite +``` +Remove-AzWebAppSlotTriggeredWebJob -Name -SlotName -SiteInputObject + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [] +``` + +### DeleteViaIdentityTriggeredwebjob +``` +Remove-AzWebAppSlotTriggeredWebJob -SlotName -TriggeredwebjobInputObject + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [] +``` + ### DeleteViaIdentity ``` Remove-AzWebAppSlotTriggeredWebJob -InputObject [-DefaultProfile ] [-PassThru] @@ -79,7 +93,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -98,7 +111,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentitySite Aliases: Required: True @@ -138,13 +151,28 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SlotName Name of the deployment slot. If a slot is not specified, the API deletes web job for the production slot. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentitySite, DeleteViaIdentityTriggeredwebjob Aliases: Required: True @@ -171,6 +199,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -TriggeredwebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentityTriggeredwebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. diff --git a/src/Websites/Websites/help/Remove-AzWebAppTriggeredWebJob.md b/src/Websites/Websites/help/Remove-AzWebAppTriggeredWebJob.md index 711ff334c862..3bfe88ac6884 100644 --- a/src/Websites/Websites/help/Remove-AzWebAppTriggeredWebJob.md +++ b/src/Websites/Websites/help/Remove-AzWebAppTriggeredWebJob.md @@ -19,6 +19,12 @@ Remove-AzWebAppTriggeredWebJob -AppName -Name -ResourceGroupNa [-WhatIf] [-Confirm] [] ``` +### DeleteViaIdentitySite +``` +Remove-AzWebAppTriggeredWebJob -Name -SiteInputObject [-DefaultProfile ] + [-PassThru] [-WhatIf] [-Confirm] [] +``` + ### DeleteViaIdentity ``` Remove-AzWebAppTriggeredWebJob -InputObject [-DefaultProfile ] [-PassThru] @@ -79,7 +85,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -98,7 +103,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Delete +Parameter Sets: Delete, DeleteViaIdentitySite Aliases: Required: True @@ -138,6 +143,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DeleteViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites/help/Reset-AzStaticWebAppApiKey.md b/src/Websites/Websites/help/Reset-AzStaticWebAppApiKey.md index f9cebafda451..5d01f3b9fb8b 100644 --- a/src/Websites/Websites/help/Reset-AzStaticWebAppApiKey.md +++ b/src/Websites/Websites/help/Reset-AzStaticWebAppApiKey.md @@ -19,6 +19,20 @@ Reset-AzStaticWebAppApiKey -Name -ResourceGroupName [-Subscrip [-PassThru] [-WhatIf] [-Confirm] [] ``` +### ResetViaJsonString +``` +Reset-AzStaticWebAppApiKey -Name -ResourceGroupName [-SubscriptionId ] + -JsonString [-DefaultProfile ] [-PassThru] [-WhatIf] + [-Confirm] [] +``` + +### ResetViaJsonFilePath +``` +Reset-AzStaticWebAppApiKey -Name -ResourceGroupName [-SubscriptionId ] + -JsonFilePath [-DefaultProfile ] [-PassThru] [-WhatIf] + [-Confirm] [] +``` + ### ResetViaIdentityExpanded ``` Reset-AzStaticWebAppApiKey -InputObject [-Kind ] [-RepositoryToken ] @@ -65,7 +79,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -79,12 +92,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Reset operation + +```yaml +Type: System.String +Parameter Sets: ResetViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Reset operation + +```yaml +Type: System.String +Parameter Sets: ResetViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ResetExpanded, ResetViaIdentityExpanded Aliases: Required: False @@ -99,7 +142,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: ResetExpanded +Parameter Sets: ResetExpanded, ResetViaJsonString, ResetViaJsonFilePath Aliases: Required: True @@ -129,7 +172,7 @@ The token which proves admin privileges to the repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ResetExpanded, ResetViaIdentityExpanded Aliases: Required: False @@ -144,7 +187,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: ResetExpanded +Parameter Sets: ResetExpanded, ResetViaJsonString, ResetViaJsonFilePath Aliases: Required: True @@ -159,7 +202,7 @@ Determines whether the repository should be updated with the new properties. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: ResetExpanded, ResetViaIdentityExpanded Aliases: Required: False @@ -176,7 +219,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: ResetExpanded +Parameter Sets: ResetExpanded, ResetViaJsonString, ResetViaJsonFilePath Aliases: Required: False diff --git a/src/Websites/Websites/help/Start-AzWebAppContinuousWebJob.md b/src/Websites/Websites/help/Start-AzWebAppContinuousWebJob.md index 22a02ac31b76..f3b5e972a097 100644 --- a/src/Websites/Websites/help/Start-AzWebAppContinuousWebJob.md +++ b/src/Websites/Websites/help/Start-AzWebAppContinuousWebJob.md @@ -19,6 +19,12 @@ Start-AzWebAppContinuousWebJob -AppName -Name -ResourceGroupNa [-WhatIf] [-Confirm] [] ``` +### StartViaIdentitySite +``` +Start-AzWebAppContinuousWebJob -Name -SiteInputObject [-DefaultProfile ] + [-PassThru] [-WhatIf] [-Confirm] [] +``` + ### StartViaIdentity ``` Start-AzWebAppContinuousWebJob -InputObject [-DefaultProfile ] [-PassThru] @@ -79,7 +85,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -98,7 +103,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Start +Parameter Sets: Start, StartViaIdentitySite Aliases: Required: True @@ -138,6 +143,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: StartViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites/help/Start-AzWebAppSlotContinuousWebJob.md b/src/Websites/Websites/help/Start-AzWebAppSlotContinuousWebJob.md index 8fbba83fa303..47178153ce40 100644 --- a/src/Websites/Websites/help/Start-AzWebAppSlotContinuousWebJob.md +++ b/src/Websites/Websites/help/Start-AzWebAppSlotContinuousWebJob.md @@ -19,6 +19,20 @@ Start-AzWebAppSlotContinuousWebJob -AppName -Name -ResourceGro [-WhatIf] [-Confirm] [] ``` +### StartViaIdentitySite +``` +Start-AzWebAppSlotContinuousWebJob -Name -SlotName -SiteInputObject + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [] +``` + +### StartViaIdentityContinuouswebjob +``` +Start-AzWebAppSlotContinuousWebJob -SlotName -ContinuouswebjobInputObject + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [] +``` + ### StartViaIdentity ``` Start-AzWebAppSlotContinuousWebJob -InputObject [-DefaultProfile ] [-PassThru] @@ -61,6 +75,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ContinuouswebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: StartViaIdentityContinuouswebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -79,7 +108,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -98,7 +126,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Start +Parameter Sets: Start, StartViaIdentitySite Aliases: Required: True @@ -138,13 +166,28 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: StartViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SlotName Name of the deployment slot. If a slot is not specified, the API deletes a deployment for the production slot. ```yaml Type: System.String -Parameter Sets: Start +Parameter Sets: Start, StartViaIdentitySite, StartViaIdentityContinuouswebjob Aliases: Required: True diff --git a/src/Websites/Websites/help/Start-AzWebAppSlotTriggeredWebJob.md b/src/Websites/Websites/help/Start-AzWebAppSlotTriggeredWebJob.md index 29dbf31fa341..2195ca1e0b4f 100644 --- a/src/Websites/Websites/help/Start-AzWebAppSlotTriggeredWebJob.md +++ b/src/Websites/Websites/help/Start-AzWebAppSlotTriggeredWebJob.md @@ -19,6 +19,20 @@ Start-AzWebAppSlotTriggeredWebJob -AppName -Name -ResourceGrou [-WhatIf] [-Confirm] [] ``` +### RunViaIdentitySite +``` +Start-AzWebAppSlotTriggeredWebJob -Name -SlotName -SiteInputObject + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [] +``` + +### RunViaIdentityTriggeredwebjob +``` +Start-AzWebAppSlotTriggeredWebJob -SlotName -TriggeredwebjobInputObject + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [] +``` + ### RunViaIdentity ``` Start-AzWebAppSlotTriggeredWebJob -InputObject [-DefaultProfile ] [-PassThru] @@ -79,7 +93,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -98,7 +111,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Run +Parameter Sets: Run, RunViaIdentitySite Aliases: Required: True @@ -138,13 +151,28 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: RunViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SlotName Name of the deployment slot. If a slot is not specified, the API uses the production slot. ```yaml Type: System.String -Parameter Sets: Run +Parameter Sets: Run, RunViaIdentitySite, RunViaIdentityTriggeredwebjob Aliases: Required: True @@ -171,6 +199,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -TriggeredwebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: RunViaIdentityTriggeredwebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. diff --git a/src/Websites/Websites/help/Start-AzWebAppTriggeredWebJob.md b/src/Websites/Websites/help/Start-AzWebAppTriggeredWebJob.md index c66a7040e3df..425b62ede667 100644 --- a/src/Websites/Websites/help/Start-AzWebAppTriggeredWebJob.md +++ b/src/Websites/Websites/help/Start-AzWebAppTriggeredWebJob.md @@ -19,6 +19,12 @@ Start-AzWebAppTriggeredWebJob -AppName -Name -ResourceGroupNam [-WhatIf] [-Confirm] [] ``` +### RunViaIdentitySite +``` +Start-AzWebAppTriggeredWebJob -Name -SiteInputObject [-DefaultProfile ] + [-PassThru] [-WhatIf] [-Confirm] [] +``` + ### RunViaIdentity ``` Start-AzWebAppTriggeredWebJob -InputObject [-DefaultProfile ] [-PassThru] @@ -79,7 +85,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -98,7 +103,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Run +Parameter Sets: Run, RunViaIdentitySite Aliases: Required: True @@ -138,6 +143,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: RunViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites/help/Stop-AzWebAppContinuousWebJob.md b/src/Websites/Websites/help/Stop-AzWebAppContinuousWebJob.md index 23f95e57c250..ad4b1a77812a 100644 --- a/src/Websites/Websites/help/Stop-AzWebAppContinuousWebJob.md +++ b/src/Websites/Websites/help/Stop-AzWebAppContinuousWebJob.md @@ -19,6 +19,12 @@ Stop-AzWebAppContinuousWebJob -AppName -Name -ResourceGroupNam [-WhatIf] [-Confirm] [] ``` +### StopViaIdentitySite +``` +Stop-AzWebAppContinuousWebJob -Name -SiteInputObject [-DefaultProfile ] + [-PassThru] [-WhatIf] [-Confirm] [] +``` + ### StopViaIdentity ``` Stop-AzWebAppContinuousWebJob -InputObject [-DefaultProfile ] [-PassThru] @@ -79,7 +85,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -98,7 +103,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Stop +Parameter Sets: Stop, StopViaIdentitySite Aliases: Required: True @@ -138,6 +143,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: StopViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites/help/Stop-AzWebAppSlotContinuousWebJob.md b/src/Websites/Websites/help/Stop-AzWebAppSlotContinuousWebJob.md index 6390ab96dbd6..2c43dd5f53ea 100644 --- a/src/Websites/Websites/help/Stop-AzWebAppSlotContinuousWebJob.md +++ b/src/Websites/Websites/help/Stop-AzWebAppSlotContinuousWebJob.md @@ -19,6 +19,20 @@ Stop-AzWebAppSlotContinuousWebJob -AppName -Name -ResourceGrou [-WhatIf] [-Confirm] [] ``` +### StopViaIdentitySite +``` +Stop-AzWebAppSlotContinuousWebJob -Name -SlotName -SiteInputObject + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [] +``` + +### StopViaIdentityContinuouswebjob +``` +Stop-AzWebAppSlotContinuousWebJob -SlotName -ContinuouswebjobInputObject + [-DefaultProfile ] [-PassThru] [-WhatIf] [-Confirm] + [] +``` + ### StopViaIdentity ``` Stop-AzWebAppSlotContinuousWebJob -InputObject [-DefaultProfile ] [-PassThru] @@ -61,6 +75,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ContinuouswebjobInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: StopViaIdentityContinuouswebjob +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -79,7 +108,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -98,7 +126,7 @@ Name of Web Job. ```yaml Type: System.String -Parameter Sets: Stop +Parameter Sets: Stop, StopViaIdentitySite Aliases: Required: True @@ -138,13 +166,28 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: StopViaIdentitySite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SlotName Name of the deployment slot. If a slot is not specified, the API deletes a deployment for the production slot. ```yaml Type: System.String -Parameter Sets: Stop +Parameter Sets: Stop, StopViaIdentitySite, StopViaIdentityContinuouswebjob Aliases: Required: True diff --git a/src/Websites/Websites/help/Test-AzStaticWebAppCustomDomain.md b/src/Websites/Websites/help/Test-AzStaticWebAppCustomDomain.md index e681f4a4eece..30e54ae6f75e 100644 --- a/src/Websites/Websites/help/Test-AzStaticWebAppCustomDomain.md +++ b/src/Websites/Websites/help/Test-AzStaticWebAppCustomDomain.md @@ -19,6 +19,35 @@ Test-AzStaticWebAppCustomDomain -DomainName -Name -ResourceGro [-NoWait] [-PassThru] [-WhatIf] [-Confirm] [] ``` +### ValidateViaJsonString +``` +Test-AzStaticWebAppCustomDomain -DomainName -Name -ResourceGroupName + [-SubscriptionId ] -JsonString [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] + [-WhatIf] [-Confirm] [] +``` + +### ValidateViaJsonFilePath +``` +Test-AzStaticWebAppCustomDomain -DomainName -Name -ResourceGroupName + [-SubscriptionId ] -JsonFilePath [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] + [-WhatIf] [-Confirm] [] +``` + +### ValidateViaIdentityStaticSiteExpanded +``` +Test-AzStaticWebAppCustomDomain -DomainName -StaticSiteInputObject + [-Kind ] [-ValidationMethod ] [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] + [-WhatIf] [-Confirm] [] +``` + +### ValidateViaIdentityStaticSite +``` +Test-AzStaticWebAppCustomDomain -DomainName -StaticSiteInputObject + -StaticSiteCustomDomainRequestPropertiesEnvelope + [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-WhatIf] + [-Confirm] [] +``` + ### ValidateViaIdentityExpanded ``` Test-AzStaticWebAppCustomDomain -InputObject [-Kind ] [-ValidationMethod ] @@ -83,7 +112,7 @@ The custom domain to validate. ```yaml Type: System.String -Parameter Sets: ValidateExpanded +Parameter Sets: ValidateExpanded, ValidateViaJsonString, ValidateViaJsonFilePath, ValidateViaIdentityStaticSiteExpanded, ValidateViaIdentityStaticSite Aliases: Required: True @@ -95,7 +124,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -109,12 +137,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Validate operation + +```yaml +Type: System.String +Parameter Sets: ValidateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Validate operation + +```yaml +Type: System.String +Parameter Sets: ValidateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ValidateExpanded, ValidateViaIdentityStaticSiteExpanded, ValidateViaIdentityExpanded Aliases: Required: False @@ -129,7 +187,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: ValidateExpanded +Parameter Sets: ValidateExpanded, ValidateViaJsonString, ValidateViaJsonFilePath Aliases: Required: True @@ -174,7 +232,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: ValidateExpanded +Parameter Sets: ValidateExpanded, ValidateViaJsonString, ValidateViaJsonFilePath Aliases: Required: True @@ -184,6 +242,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteCustomDomainRequestPropertiesEnvelope +Static Site Custom Domain Request Properties ARM resource. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteCustomDomainRequestPropertiesArmResource +Parameter Sets: ValidateViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: ValidateViaIdentityStaticSiteExpanded, ValidateViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -191,7 +279,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: ValidateExpanded +Parameter Sets: ValidateExpanded, ValidateViaJsonString, ValidateViaJsonFilePath Aliases: Required: False @@ -206,7 +294,7 @@ Validation method for adding a custom domain ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: ValidateExpanded, ValidateViaIdentityStaticSiteExpanded, ValidateViaIdentityExpanded Aliases: Required: False @@ -252,6 +340,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteCustomDomainRequestPropertiesArmResource + ### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity ## OUTPUTS diff --git a/src/Websites/Websites/help/Unregister-AzStaticWebAppBuildUserProvidedFunctionApp.md b/src/Websites/Websites/help/Unregister-AzStaticWebAppBuildUserProvidedFunctionApp.md index ca89f3d3a834..e66cd1122505 100644 --- a/src/Websites/Websites/help/Unregister-AzStaticWebAppBuildUserProvidedFunctionApp.md +++ b/src/Websites/Websites/help/Unregister-AzStaticWebAppBuildUserProvidedFunctionApp.md @@ -19,6 +19,20 @@ Unregister-AzStaticWebAppBuildUserProvidedFunctionApp -EnvironmentName [-WhatIf] [-Confirm] [] ``` +### DetachViaIdentityStaticSite +``` +Unregister-AzStaticWebAppBuildUserProvidedFunctionApp -EnvironmentName -FunctionAppName + -StaticSiteInputObject [-DefaultProfile ] [-PassThru] + [-WhatIf] [-Confirm] [] +``` + +### DetachViaIdentityBuild +``` +Unregister-AzStaticWebAppBuildUserProvidedFunctionApp -FunctionAppName + -BuildInputObject [-DefaultProfile ] [-PassThru] + [-WhatIf] [-Confirm] [] +``` + ### DetachViaIdentity ``` Unregister-AzStaticWebAppBuildUserProvidedFunctionApp -InputObject @@ -47,6 +61,21 @@ This command unregisters the user provided function app from the static site bui ## PARAMETERS +### -BuildInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DetachViaIdentityBuild +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -68,7 +97,7 @@ The stage site identifier. ```yaml Type: System.String -Parameter Sets: Detach +Parameter Sets: Detach, DetachViaIdentityStaticSite Aliases: Required: True @@ -83,7 +112,7 @@ Name of the function app registered with the static site build. ```yaml Type: System.String -Parameter Sets: Detach +Parameter Sets: Detach, DetachViaIdentityStaticSite, DetachViaIdentityBuild Aliases: Required: True @@ -95,7 +124,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -154,6 +182,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DetachViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites/help/Unregister-AzStaticWebAppUserProvidedFunctionApp.md b/src/Websites/Websites/help/Unregister-AzStaticWebAppUserProvidedFunctionApp.md index fba796254e10..980ae5a491ac 100644 --- a/src/Websites/Websites/help/Unregister-AzStaticWebAppUserProvidedFunctionApp.md +++ b/src/Websites/Websites/help/Unregister-AzStaticWebAppUserProvidedFunctionApp.md @@ -19,6 +19,13 @@ Unregister-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName -Name [-WhatIf] [-Confirm] [] ``` +### DetachViaIdentityStaticSite +``` +Unregister-AzStaticWebAppUserProvidedFunctionApp -FunctionAppName + -StaticSiteInputObject [-DefaultProfile ] [-PassThru] + [-WhatIf] [-Confirm] [] +``` + ### DetachViaIdentity ``` Unregister-AzStaticWebAppUserProvidedFunctionApp -InputObject [-DefaultProfile ] @@ -67,7 +74,7 @@ Name of the function app registered with the static site. ```yaml Type: System.String -Parameter Sets: Detach +Parameter Sets: Detach, DetachViaIdentityStaticSite Aliases: Required: True @@ -79,7 +86,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -138,6 +144,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: DetachViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. diff --git a/src/Websites/Websites/help/Update-AzStaticWebApp.md b/src/Websites/Websites/help/Update-AzStaticWebApp.md index 48172045b38b..b21d52f1bc9b 100644 --- a/src/Websites/Websites/help/Update-AzStaticWebApp.md +++ b/src/Websites/Websites/help/Update-AzStaticWebApp.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Update-AzStaticWebApp ## SYNOPSIS -Description for Creates a new static site in an existing resource group, or updates an existing static site. +Description for update a new static site in an existing resource group, or update an existing static site. ## SYNTAX @@ -20,8 +20,22 @@ Update-AzStaticWebApp -Name -ResourceGroupName [-SubscriptionI [-ForkRepositoryIsPrivate] [-ForkRepositoryName ] [-ForkRepositoryOwner ] [-GithubActionSecretNameOverride ] [-Kind ] [-OutputLocation ] [-RepositoryToken ] [-RepositoryUrl ] [-SkipGithubActionWorkflowGeneration] - [-StagingEnvironmentPolicy ] [-TemplateRepositoryUrl ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-StagingEnvironmentPolicy ] [-TemplateRepositoryUrl ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### UpdateViaJsonString +``` +Update-AzStaticWebApp -Name -ResourceGroupName [-SubscriptionId ] + -JsonString [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### UpdateViaJsonFilePath +``` +Update-AzStaticWebApp -Name -ResourceGroupName [-SubscriptionId ] + -JsonFilePath [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### UpdateViaIdentityExpanded @@ -31,13 +45,12 @@ Update-AzStaticWebApp -InputObject [-AllowConfigFileUpdate] [-Branch ] [-ForkRepositoryDescription ] [-ForkRepositoryIsPrivate] [-ForkRepositoryName ] [-ForkRepositoryOwner ] [-GithubActionSecretNameOverride ] [-Kind ] [-OutputLocation ] [-RepositoryToken ] [-RepositoryUrl ] - [-SkipGithubActionWorkflowGeneration] [-StagingEnvironmentPolicy ] - [-TemplateRepositoryUrl ] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + [-SkipGithubActionWorkflowGeneration] [-StagingEnvironmentPolicy ] [-TemplateRepositoryUrl ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -Description for Creates a new static site in an existing resource group, or updates an existing static site. +Description for update a new static site in an existing resource group, or update an existing static site. ## EXAMPLES @@ -74,7 +87,7 @@ This command updates a static site by pipeline. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -89,7 +102,7 @@ A custom command to run during deployment of the Azure Functions API application ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -104,7 +117,7 @@ The path to the api code within the repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -119,7 +132,7 @@ Deprecated: The path of the app artifacts after building (deprecated in favor of ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -134,7 +147,7 @@ A custom command to run during deployment of the static content application. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -149,7 +162,7 @@ The path to the app code within the repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -164,7 +177,7 @@ The target branch in the repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -195,7 +208,7 @@ Description of the newly generated repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -212,7 +225,7 @@ public). ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -227,7 +240,7 @@ Name of the newly generated repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -242,7 +255,7 @@ Owner of the newly generated repository. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -257,7 +270,7 @@ Github Action secret name override. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -269,7 +282,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -283,12 +295,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -303,7 +345,7 @@ Name of the static site to create or update. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonString, UpdateViaJsonFilePath Aliases: Required: True @@ -318,7 +360,7 @@ The output path of the app after building. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -334,7 +376,7 @@ This is used to setup the Github Actions workflow file and API secrets. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -349,7 +391,7 @@ URL for the repository of the static site. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -364,7 +406,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonString, UpdateViaJsonFilePath Aliases: Required: True @@ -379,7 +421,7 @@ Skip Github Action workflow generation. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -393,8 +435,8 @@ Accept wildcard characters: False State indicating whether staging environments are allowed or not allowed for a static web app. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.StagingEnvironmentPolicy -Parameter Sets: (All) +Type: System.String +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -411,7 +453,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonString, UpdateViaJsonFilePath Aliases: Required: False @@ -427,7 +469,7 @@ The newly generated repository will be based on this one. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -477,7 +519,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteArmResource ## NOTES diff --git a/src/Websites/Websites/help/Update-AzStaticWebAppUser.md b/src/Websites/Websites/help/Update-AzStaticWebAppUser.md index 20d373ed11da..c1d018833097 100644 --- a/src/Websites/Websites/help/Update-AzStaticWebAppUser.md +++ b/src/Websites/Websites/help/Update-AzStaticWebAppUser.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Update-AzStaticWebAppUser ## SYNOPSIS -Description for Updates a user entry with the listed roles +Description for update a user entry with the listed roles ## SYNTAX @@ -19,6 +19,48 @@ Update-AzStaticWebAppUser -AuthProvider -Name -ResourceGroupNa [-WhatIf] [-Confirm] [] ``` +### UpdateViaJsonString +``` +Update-AzStaticWebAppUser -AuthProvider -Name -ResourceGroupName + [-SubscriptionId ] -UserId -JsonString [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### UpdateViaJsonFilePath +``` +Update-AzStaticWebAppUser -AuthProvider -Name -ResourceGroupName + [-SubscriptionId ] -UserId -JsonFilePath [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### UpdateViaIdentityStaticSiteExpanded +``` +Update-AzStaticWebAppUser -AuthProvider -UserId -StaticSiteInputObject + [-Kind ] [-Role ] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### UpdateViaIdentityStaticSite +``` +Update-AzStaticWebAppUser -AuthProvider -UserId -StaticSiteInputObject + -StaticSiteUserEnvelope [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### UpdateViaIdentityAuthproviderExpanded +``` +Update-AzStaticWebAppUser -UserId -AuthproviderInputObject [-Kind ] + [-Role ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### UpdateViaIdentityAuthprovider +``` +Update-AzStaticWebAppUser -UserId -AuthproviderInputObject + -StaticSiteUserEnvelope [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + ### UpdateViaIdentityExpanded ``` Update-AzStaticWebAppUser -InputObject [-Kind ] [-Role ] @@ -26,7 +68,7 @@ Update-AzStaticWebAppUser -InputObject [-Kind ] [-Ro ``` ## DESCRIPTION -Description for Updates a user entry with the listed roles +Description for update a user entry with the listed roles ## EXAMPLES @@ -64,7 +106,7 @@ The auth provider for this user. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonString, UpdateViaJsonFilePath, UpdateViaIdentityStaticSiteExpanded, UpdateViaIdentityStaticSite Aliases: Required: True @@ -74,6 +116,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -AuthproviderInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: UpdateViaIdentityAuthproviderExpanded, UpdateViaIdentityAuthprovider +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -DefaultProfile The DefaultProfile parameter is not functional. Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. @@ -92,7 +149,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity @@ -106,12 +162,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Kind of resource. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityStaticSiteExpanded, UpdateViaIdentityAuthproviderExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -126,7 +212,7 @@ Name of the static site. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonString, UpdateViaJsonFilePath Aliases: Required: True @@ -141,7 +227,7 @@ Name of the resource group to which the resource belongs. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonString, UpdateViaJsonFilePath Aliases: Required: True @@ -156,7 +242,7 @@ The roles for the static site user, in free-form string format ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityStaticSiteExpanded, UpdateViaIdentityAuthproviderExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -166,6 +252,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -StaticSiteInputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity +Parameter Sets: UpdateViaIdentityStaticSiteExpanded, UpdateViaIdentityStaticSite +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StaticSiteUserEnvelope +Static Site User ARM resource. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserArmResource +Parameter Sets: UpdateViaIdentityStaticSite, UpdateViaIdentityAuthprovider +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -SubscriptionId Your Azure subscription ID. This is a GUID-formatted string (e.g. @@ -173,7 +289,7 @@ This is a GUID-formatted string (e.g. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonString, UpdateViaJsonFilePath Aliases: Required: False @@ -188,7 +304,7 @@ The user id of the user. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonString, UpdateViaJsonFilePath, UpdateViaIdentityStaticSiteExpanded, UpdateViaIdentityStaticSite, UpdateViaIdentityAuthproviderExpanded, UpdateViaIdentityAuthprovider Aliases: Required: True @@ -234,11 +350,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserArmResource + ### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IWebsitesIdentity ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteUserArmResource +### Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserArmResource ## NOTES diff --git a/tools/StaticAnalysis/Exceptions/Az.LoadTesting/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.LoadTesting/BreakingChangeIssues.csv new file mode 100644 index 000000000000..a2d893914f20 --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.LoadTesting/BreakingChangeIssues.csv @@ -0,0 +1,77 @@ +"Module","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Az.Websites","Get-AzStaticWebApp","Get-AzStaticWebApp","0","3000","The type of property 'SkuCapability' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ICapability' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ICapability]'.","Change the type of property 'SkuCapability' back to 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ICapability'." +"Az.Websites","Get-AzStaticWebApp","Get-AzStaticWebApp","0","3000","The type of property 'PrivateEndpointConnection' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IResponseMessageEnvelopeRemotePrivateEndpointConnection' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IResponseMessageEnvelopeRemotePrivateEndpointConnection]'.","Change the type of property 'PrivateEndpointConnection' back to 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IResponseMessageEnvelopeRemotePrivateEndpointConnection'." +"Az.Websites","Get-AzStaticWebApp","Get-AzStaticWebApp","0","3000","The type of property 'UserProvidedFunctionApp' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionApp' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionApp]'.","Change the type of property 'UserProvidedFunctionApp' back to 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionApp'." +"Az.Websites","Get-AzStaticWebApp","Get-AzStaticWebApp","0","3000","The type of property 'IdentityType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.ManagedServiceIdentityType]' to 'System.String'.","Change the type of property 'IdentityType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.ManagedServiceIdentityType]'." +"Az.Websites","Get-AzStaticWebApp","Get-AzStaticWebApp","0","3000","The type of property 'StagingEnvironmentPolicy' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.StagingEnvironmentPolicy]' to 'System.String'.","Change the type of property 'StagingEnvironmentPolicy' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.StagingEnvironmentPolicy]'." +"Az.Websites","Get-AzStaticWebApp","Get-AzStaticWebApp","0","3000","The type of property 'SkuLocation' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'SkuLocation' back to 'System.String[]'." +"Az.Websites","Get-AzStaticWebApp","Get-AzStaticWebApp","0","3000","The type of property 'CustomDomain' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'CustomDomain' back to 'System.String[]'." +"Az.Websites","Get-AzStaticWebAppBuild","Get-AzStaticWebAppBuild","0","3000","The type of property 'UserProvidedFunctionApp' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteBuildArmResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionApp' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionApp]'.","Change the type of property 'UserProvidedFunctionApp' back to 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionApp'." +"Az.Websites","Get-AzStaticWebAppBuild","Get-AzStaticWebAppBuild","0","3000","The type of property 'Status' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteBuildArmResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.BuildStatus]' to 'System.String'.","Change the type of property 'Status' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.BuildStatus]'." +"Az.Websites","Get-AzStaticWebAppBuildFunction","Get-AzStaticWebAppBuildFunction","0","3000","The type of property 'TriggerType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteFunctionOverviewArmResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.TriggerTypes]' to 'System.String'.","Change the type of property 'TriggerType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.TriggerTypes]'." +"Az.Websites","Get-AzStaticWebAppConfiguredRole","Get-AzStaticWebAppConfiguredRole","0","3000","The type of property 'Property' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStringList' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'Property' back to 'System.String[]'." +"Az.Websites","Get-AzStaticWebAppCustomDomain","Get-AzStaticWebAppCustomDomain","0","3000","The type of property 'Status' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteCustomDomainOverviewArmResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.CustomDomainStatus]' to 'System.String'.","Change the type of property 'Status' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.CustomDomainStatus]'." +"Az.Websites","Get-AzStaticWebAppFunction","Get-AzStaticWebAppFunction","0","3000","The type of property 'TriggerType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteFunctionOverviewArmResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.TriggerTypes]' to 'System.String'.","Change the type of property 'TriggerType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.TriggerTypes]'." +"Az.Websites","Get-AzWebAppContinuousWebJob","Get-AzWebAppContinuousWebJob","0","3000","The type of property 'Status' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.IContinuousWebJob' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.ContinuousWebJobStatus]' to 'System.String'.","Change the type of property 'Status' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.ContinuousWebJobStatus]'." +"Az.Websites","Get-AzWebAppContinuousWebJob","Get-AzWebAppContinuousWebJob","0","3000","The type of property 'WebJobType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.IContinuousWebJob' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.WebJobType]' to 'System.String'.","Change the type of property 'WebJobType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.WebJobType]'." +"Az.Websites","Get-AzWebAppContinuousWebJob","Get-AzWebAppContinuousWebJob","0","2000","The cmdlet 'Get-AzWebAppContinuousWebJob' no longer supports the parameter 'PassThru' and no alias was found for the original parameter name.","Add the parameter 'PassThru' back to the cmdlet 'Get-AzWebAppContinuousWebJob', or add an alias to the original parameter name." +"Az.Websites","Get-AzWebAppContinuousWebJob","Get-AzWebAppContinuousWebJob","0","1050","The parameter set 'Get' for cmdlet 'Get-AzWebAppContinuousWebJob' has been removed.","Add parameter set 'Get' back to cmdlet 'Get-AzWebAppContinuousWebJob'." +"Az.Websites","Get-AzWebAppContinuousWebJob","Get-AzWebAppContinuousWebJob","0","1050","The parameter set 'GetViaIdentity' for cmdlet 'Get-AzWebAppContinuousWebJob' has been removed.","Add parameter set 'GetViaIdentity' back to cmdlet 'Get-AzWebAppContinuousWebJob'." +"Az.Websites","Get-AzWebAppSlotContinuousWebJob","Get-AzWebAppSlotContinuousWebJob","0","3000","The type of property 'Status' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.IContinuousWebJob' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.ContinuousWebJobStatus]' to 'System.String'.","Change the type of property 'Status' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.ContinuousWebJobStatus]'." +"Az.Websites","Get-AzWebAppSlotContinuousWebJob","Get-AzWebAppSlotContinuousWebJob","0","3000","The type of property 'WebJobType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.IContinuousWebJob' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.WebJobType]' to 'System.String'.","Change the type of property 'WebJobType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.WebJobType]'." +"Az.Websites","Get-AzWebAppSlotContinuousWebJob","Get-AzWebAppSlotContinuousWebJob","0","2000","The cmdlet 'Get-AzWebAppSlotContinuousWebJob' no longer supports the parameter 'PassThru' and no alias was found for the original parameter name.","Add the parameter 'PassThru' back to the cmdlet 'Get-AzWebAppSlotContinuousWebJob', or add an alias to the original parameter name." +"Az.Websites","Get-AzWebAppSlotContinuousWebJob","Get-AzWebAppSlotContinuousWebJob","0","1050","The parameter set 'Get' for cmdlet 'Get-AzWebAppSlotContinuousWebJob' has been removed.","Add parameter set 'Get' back to cmdlet 'Get-AzWebAppSlotContinuousWebJob'." +"Az.Websites","Get-AzWebAppSlotContinuousWebJob","Get-AzWebAppSlotContinuousWebJob","0","1050","The parameter set 'GetViaIdentity' for cmdlet 'Get-AzWebAppSlotContinuousWebJob' has been removed.","Add parameter set 'GetViaIdentity' back to cmdlet 'Get-AzWebAppSlotContinuousWebJob'." +"Az.Websites","Get-AzWebAppSlotTriggeredWebJob","Get-AzWebAppSlotTriggeredWebJob","0","3000","The type of property 'LatestRunStatus' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.ITriggeredWebJob' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.TriggeredWebJobStatus]' to 'System.String'.","Change the type of property 'LatestRunStatus' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.TriggeredWebJobStatus]'." +"Az.Websites","Get-AzWebAppSlotTriggeredWebJob","Get-AzWebAppSlotTriggeredWebJob","0","3000","The type of property 'WebJobType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.ITriggeredWebJob' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.WebJobType]' to 'System.String'.","Change the type of property 'WebJobType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.WebJobType]'." +"Az.Websites","Get-AzWebAppSlotTriggeredWebJob","Get-AzWebAppSlotTriggeredWebJob","0","2000","The cmdlet 'Get-AzWebAppSlotTriggeredWebJob' no longer supports the parameter 'PassThru' and no alias was found for the original parameter name.","Add the parameter 'PassThru' back to the cmdlet 'Get-AzWebAppSlotTriggeredWebJob', or add an alias to the original parameter name." +"Az.Websites","Get-AzWebAppSlotTriggeredWebJob","Get-AzWebAppSlotTriggeredWebJob","0","1050","The parameter set 'Get' for cmdlet 'Get-AzWebAppSlotTriggeredWebJob' has been removed.","Add parameter set 'Get' back to cmdlet 'Get-AzWebAppSlotTriggeredWebJob'." +"Az.Websites","Get-AzWebAppSlotTriggeredWebJob","Get-AzWebAppSlotTriggeredWebJob","0","1050","The parameter set 'GetViaIdentity' for cmdlet 'Get-AzWebAppSlotTriggeredWebJob' has been removed.","Add parameter set 'GetViaIdentity' back to cmdlet 'Get-AzWebAppSlotTriggeredWebJob'." +"Az.Websites","Get-AzWebAppSlotTriggeredWebJobHistory","Get-AzWebAppSlotTriggeredWebJobHistory","0","3000","The type of property 'Run' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.ITriggeredJobHistory' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ITriggeredJobRun' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ITriggeredJobRun]'.","Change the type of property 'Run' back to 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ITriggeredJobRun'." +"Az.Websites","Get-AzWebAppSlotTriggeredWebJobHistory","Get-AzWebAppSlotTriggeredWebJobHistory","0","2000","The cmdlet 'Get-AzWebAppSlotTriggeredWebJobHistory' no longer supports the parameter 'PassThru' and no alias was found for the original parameter name.","Add the parameter 'PassThru' back to the cmdlet 'Get-AzWebAppSlotTriggeredWebJobHistory', or add an alias to the original parameter name." +"Az.Websites","Get-AzWebAppSlotTriggeredWebJobHistory","Get-AzWebAppSlotTriggeredWebJobHistory","0","1050","The parameter set 'List' for cmdlet 'Get-AzWebAppSlotTriggeredWebJobHistory' has been removed.","Add parameter set 'List' back to cmdlet 'Get-AzWebAppSlotTriggeredWebJobHistory'." +"Az.Websites","Get-AzWebAppSlotTriggeredWebJobHistory","Get-AzWebAppSlotTriggeredWebJobHistory","0","1050","The parameter set 'Get' for cmdlet 'Get-AzWebAppSlotTriggeredWebJobHistory' has been removed.","Add parameter set 'Get' back to cmdlet 'Get-AzWebAppSlotTriggeredWebJobHistory'." +"Az.Websites","Get-AzWebAppSlotTriggeredWebJobHistory","Get-AzWebAppSlotTriggeredWebJobHistory","0","1050","The parameter set 'GetViaIdentity' for cmdlet 'Get-AzWebAppSlotTriggeredWebJobHistory' has been removed.","Add parameter set 'GetViaIdentity' back to cmdlet 'Get-AzWebAppSlotTriggeredWebJobHistory'." +"Az.Websites","Get-AzWebAppSlotTriggeredWebJobHistory","Get-AzWebAppSlotTriggeredWebJobHistory","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzWebAppSlotTriggeredWebJobHistory' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzWebAppSlotTriggeredWebJobHistory'." +"Az.Websites","Get-AzWebAppSlotWebJob","Get-AzWebAppSlotWebJob","0","3000","The type of property 'WebJobType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.IWebJob' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.WebJobType]' to 'System.String'.","Change the type of property 'WebJobType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.WebJobType]'." +"Az.Websites","Get-AzWebAppTriggeredWebJob","Get-AzWebAppTriggeredWebJob","0","3000","The type of property 'LatestRunStatus' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.ITriggeredWebJob' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.TriggeredWebJobStatus]' to 'System.String'.","Change the type of property 'LatestRunStatus' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.TriggeredWebJobStatus]'." +"Az.Websites","Get-AzWebAppTriggeredWebJob","Get-AzWebAppTriggeredWebJob","0","3000","The type of property 'WebJobType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.ITriggeredWebJob' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.WebJobType]' to 'System.String'.","Change the type of property 'WebJobType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.WebJobType]'." +"Az.Websites","Get-AzWebAppTriggeredWebJob","Get-AzWebAppTriggeredWebJob","0","2000","The cmdlet 'Get-AzWebAppTriggeredWebJob' no longer supports the parameter 'PassThru' and no alias was found for the original parameter name.","Add the parameter 'PassThru' back to the cmdlet 'Get-AzWebAppTriggeredWebJob', or add an alias to the original parameter name." +"Az.Websites","Get-AzWebAppTriggeredWebJob","Get-AzWebAppTriggeredWebJob","0","1050","The parameter set 'Get' for cmdlet 'Get-AzWebAppTriggeredWebJob' has been removed.","Add parameter set 'Get' back to cmdlet 'Get-AzWebAppTriggeredWebJob'." +"Az.Websites","Get-AzWebAppTriggeredWebJob","Get-AzWebAppTriggeredWebJob","0","1050","The parameter set 'GetViaIdentity' for cmdlet 'Get-AzWebAppTriggeredWebJob' has been removed.","Add parameter set 'GetViaIdentity' back to cmdlet 'Get-AzWebAppTriggeredWebJob'." +"Az.Websites","Get-AzWebAppTriggeredWebJobHistory","Get-AzWebAppTriggeredWebJobHistory","0","3000","The type of property 'Run' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.ITriggeredJobHistory' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ITriggeredJobRun' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ITriggeredJobRun]'.","Change the type of property 'Run' back to 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ITriggeredJobRun'." +"Az.Websites","Get-AzWebAppTriggeredWebJobHistory","Get-AzWebAppTriggeredWebJobHistory","0","2000","The cmdlet 'Get-AzWebAppTriggeredWebJobHistory' no longer supports the parameter 'PassThru' and no alias was found for the original parameter name.","Add the parameter 'PassThru' back to the cmdlet 'Get-AzWebAppTriggeredWebJobHistory', or add an alias to the original parameter name." +"Az.Websites","Get-AzWebAppTriggeredWebJobHistory","Get-AzWebAppTriggeredWebJobHistory","0","1050","The parameter set 'List' for cmdlet 'Get-AzWebAppTriggeredWebJobHistory' has been removed.","Add parameter set 'List' back to cmdlet 'Get-AzWebAppTriggeredWebJobHistory'." +"Az.Websites","Get-AzWebAppTriggeredWebJobHistory","Get-AzWebAppTriggeredWebJobHistory","0","1050","The parameter set 'Get' for cmdlet 'Get-AzWebAppTriggeredWebJobHistory' has been removed.","Add parameter set 'Get' back to cmdlet 'Get-AzWebAppTriggeredWebJobHistory'." +"Az.Websites","Get-AzWebAppTriggeredWebJobHistory","Get-AzWebAppTriggeredWebJobHistory","0","1050","The parameter set 'GetViaIdentity' for cmdlet 'Get-AzWebAppTriggeredWebJobHistory' has been removed.","Add parameter set 'GetViaIdentity' back to cmdlet 'Get-AzWebAppTriggeredWebJobHistory'." +"Az.Websites","Get-AzWebAppTriggeredWebJobHistory","Get-AzWebAppTriggeredWebJobHistory","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzWebAppTriggeredWebJobHistory' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzWebAppTriggeredWebJobHistory'." +"Az.Websites","Get-AzWebAppWebJob","Get-AzWebAppWebJob","0","3000","The type of property 'WebJobType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20210201.IWebJob' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.WebJobType]' to 'System.String'.","Change the type of property 'WebJobType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.WebJobType]'." +"Az.Websites","New-AzStaticWebApp","New-AzStaticWebApp","0","3000","The type of property 'SkuCapability' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ICapability' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ICapability]'.","Change the type of property 'SkuCapability' back to 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ICapability'." +"Az.Websites","New-AzStaticWebApp","New-AzStaticWebApp","0","3000","The type of property 'PrivateEndpointConnection' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IResponseMessageEnvelopeRemotePrivateEndpointConnection' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IResponseMessageEnvelopeRemotePrivateEndpointConnection]'.","Change the type of property 'PrivateEndpointConnection' back to 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IResponseMessageEnvelopeRemotePrivateEndpointConnection'." +"Az.Websites","New-AzStaticWebApp","New-AzStaticWebApp","0","3000","The type of property 'UserProvidedFunctionApp' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionApp' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionApp]'.","Change the type of property 'UserProvidedFunctionApp' back to 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionApp'." +"Az.Websites","New-AzStaticWebApp","New-AzStaticWebApp","0","3000","The type of property 'IdentityType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.ManagedServiceIdentityType]' to 'System.String'.","Change the type of property 'IdentityType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.ManagedServiceIdentityType]'." +"Az.Websites","New-AzStaticWebApp","New-AzStaticWebApp","0","3000","The type of property 'StagingEnvironmentPolicy' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.StagingEnvironmentPolicy]' to 'System.String'.","Change the type of property 'StagingEnvironmentPolicy' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.StagingEnvironmentPolicy]'." +"Az.Websites","New-AzStaticWebApp","New-AzStaticWebApp","0","3000","The type of property 'SkuLocation' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'SkuLocation' back to 'System.String[]'." +"Az.Websites","New-AzStaticWebApp","New-AzStaticWebApp","0","3000","The type of property 'CustomDomain' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'CustomDomain' back to 'System.String[]'." +"Az.Websites","New-AzStaticWebApp","New-AzStaticWebApp","0","2000","The cmdlet 'New-AzStaticWebApp' no longer supports the parameter 'IdentityType' and no alias was found for the original parameter name.","Add the parameter 'IdentityType' back to the cmdlet 'New-AzStaticWebApp', or add an alias to the original parameter name." +"Az.Websites","New-AzStaticWebApp","New-AzStaticWebApp","0","2000","The cmdlet 'New-AzStaticWebApp' no longer supports the parameter 'IdentityUserAssignedIdentity' and no alias was found for the original parameter name.","Add the parameter 'IdentityUserAssignedIdentity' back to the cmdlet 'New-AzStaticWebApp', or add an alias to the original parameter name." +"Az.Websites","New-AzStaticWebApp","New-AzStaticWebApp","0","2020","The cmdlet 'New-AzStaticWebApp' no longer supports the type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.StagingEnvironmentPolicy' for parameter 'StagingEnvironmentPolicy'.","Change the type for parameter 'StagingEnvironmentPolicy' back to 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.StagingEnvironmentPolicy'." +"Az.Websites","New-AzStaticWebApp","New-AzStaticWebApp","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzStaticWebApp' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzStaticWebApp'." +"Az.Websites","New-AzStaticWebAppBuildAppSetting","New-AzStaticWebAppBuildAppSetting","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzStaticWebAppBuildAppSetting' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzStaticWebAppBuildAppSetting'." +"Az.Websites","New-AzStaticWebAppBuildFunctionAppSetting","New-AzStaticWebAppBuildFunctionAppSetting","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzStaticWebAppBuildFunctionAppSetting' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzStaticWebAppBuildFunctionAppSetting'." +"Az.Websites","New-AzStaticWebAppCustomDomain","New-AzStaticWebAppCustomDomain","0","3000","The type of property 'Status' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteCustomDomainOverviewArmResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.CustomDomainStatus]' to 'System.String'.","Change the type of property 'Status' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.CustomDomainStatus]'." +"Az.Websites","New-AzStaticWebAppFunctionAppSetting","New-AzStaticWebAppFunctionAppSetting","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzStaticWebAppFunctionAppSetting' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzStaticWebAppFunctionAppSetting'." +"Az.Websites","New-AzStaticWebAppSetting","New-AzStaticWebAppSetting","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzStaticWebAppSetting' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzStaticWebAppSetting'." +"Az.Websites","New-AzStaticWebAppUserRoleInvitationLink","New-AzStaticWebAppUserRoleInvitationLink","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzStaticWebAppUserRoleInvitationLink' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzStaticWebAppUserRoleInvitationLink'." +"Az.Websites","Reset-AzStaticWebAppApiKey","Reset-AzStaticWebAppApiKey","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Reset-AzStaticWebAppApiKey' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Reset-AzStaticWebAppApiKey'." +"Az.Websites","Test-AzStaticWebAppCustomDomain","Test-AzStaticWebAppCustomDomain","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Test-AzStaticWebAppCustomDomain' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Test-AzStaticWebAppCustomDomain'." +"Az.Websites","Update-AzStaticWebApp","Update-AzStaticWebApp","0","3000","The type of property 'SkuCapability' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ICapability' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ICapability]'.","Change the type of property 'SkuCapability' back to 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.ICapability'." +"Az.Websites","Update-AzStaticWebApp","Update-AzStaticWebApp","0","3000","The type of property 'PrivateEndpointConnection' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IResponseMessageEnvelopeRemotePrivateEndpointConnection' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IResponseMessageEnvelopeRemotePrivateEndpointConnection]'.","Change the type of property 'PrivateEndpointConnection' back to 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IResponseMessageEnvelopeRemotePrivateEndpointConnection'." +"Az.Websites","Update-AzStaticWebApp","Update-AzStaticWebApp","0","3000","The type of property 'UserProvidedFunctionApp' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionApp' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionApp]'.","Change the type of property 'UserProvidedFunctionApp' back to 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.IStaticSiteUserProvidedFunctionApp'." +"Az.Websites","Update-AzStaticWebApp","Update-AzStaticWebApp","0","3000","The type of property 'IdentityType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.ManagedServiceIdentityType]' to 'System.String'.","Change the type of property 'IdentityType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.ManagedServiceIdentityType]'." +"Az.Websites","Update-AzStaticWebApp","Update-AzStaticWebApp","0","3000","The type of property 'StagingEnvironmentPolicy' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.StagingEnvironmentPolicy]' to 'System.String'.","Change the type of property 'StagingEnvironmentPolicy' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.StagingEnvironmentPolicy]'." +"Az.Websites","Update-AzStaticWebApp","Update-AzStaticWebApp","0","3000","The type of property 'SkuLocation' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'SkuLocation' back to 'System.String[]'." +"Az.Websites","Update-AzStaticWebApp","Update-AzStaticWebApp","0","3000","The type of property 'CustomDomain' of type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Models.Api20201201.IStaticSiteArmResource' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'CustomDomain' back to 'System.String[]'." +"Az.Websites","Update-AzStaticWebApp","Update-AzStaticWebApp","0","2020","The cmdlet 'Update-AzStaticWebApp' no longer supports the type 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.StagingEnvironmentPolicy' for parameter 'StagingEnvironmentPolicy'.","Change the type for parameter 'StagingEnvironmentPolicy' back to 'Microsoft.Azure.PowerShell.Cmdlets.Websites.Support.StagingEnvironmentPolicy'." +"Az.Websites","Update-AzStaticWebApp","Update-AzStaticWebApp","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Update-AzStaticWebApp' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Update-AzStaticWebApp'." +"Az.Websites","Update-AzStaticWebAppUser","Update-AzStaticWebAppUser","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Update-AzStaticWebAppUser' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Update-AzStaticWebAppUser'."